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 vcontrolpointspline.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-08-05 10:37:56 +02:00
|
|
|
#include "vcontrolpointspline.h"
|
2014-01-27 17:07:56 +01:00
|
|
|
#include "../tools/vabstracttool.h"
|
2013-08-05 10:37:56 +02:00
|
|
|
|
2014-09-08 15:54:41 +02:00
|
|
|
#include <QGraphicsSceneMouseEvent>
|
2013-11-21 13:05:26 +01:00
|
|
|
#include <QPen>
|
2014-07-30 22:54:13 +02:00
|
|
|
#include <QStyleOptionGraphicsItem>
|
2014-09-25 17:44:06 +02:00
|
|
|
#include "../core/vapplication.h"
|
2013-11-21 13:05:26 +01:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief VControlPointSpline constructor.
|
|
|
|
* @param indexSpline index spline in list.
|
|
|
|
* @param position position point in spline.
|
|
|
|
* @param controlPoint control point.
|
|
|
|
* @param splinePoint spline point.
|
|
|
|
* @param parent parent object.
|
|
|
|
*/
|
2014-06-12 09:22:29 +02:00
|
|
|
VControlPointSpline::VControlPointSpline(const qint32 &indexSpline, SplinePointPosition position,
|
2013-08-09 08:49:34 +02:00
|
|
|
const QPointF &controlPoint, const QPointF &splinePoint,
|
2013-11-04 21:35:15 +01:00
|
|
|
QGraphicsItem *parent)
|
2014-06-09 21:11:33 +02:00
|
|
|
:QGraphicsEllipseItem(parent), radius(0), controlLine(nullptr), indexSpline(indexSpline), position(position)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-08-05 10:37:56 +02:00
|
|
|
//create circle
|
2014-06-09 20:27:18 +02:00
|
|
|
radius = (1.5/*mm*/ / 25.4) * VApplication::PrintDPI;
|
2013-08-05 10:37:56 +02:00
|
|
|
QRectF rec = QRectF(0, 0, radius*2, radius*2);
|
|
|
|
rec.translate(-rec.center().x(), -rec.center().y());
|
|
|
|
this->setRect(rec);
|
2014-03-26 05:39:07 +01:00
|
|
|
this->setPen(QPen(Qt::black, qApp->toPixel(qApp->widthHairLine())));
|
2013-08-05 10:37:56 +02:00
|
|
|
this->setBrush(QBrush(Qt::NoBrush));
|
|
|
|
this->setFlag(QGraphicsItem::ItemIsSelectable, true);
|
|
|
|
this->setFlag(QGraphicsItem::ItemIsMovable, true);
|
|
|
|
this->setFlag(QGraphicsItem::ItemSendsGeometryChanges, true);
|
|
|
|
this->setAcceptHoverEvents(true);
|
|
|
|
this->setPos(controlPoint);
|
2014-09-27 14:50:00 +02:00
|
|
|
this->setZValue(100);
|
2013-08-05 10:37:56 +02:00
|
|
|
|
|
|
|
QPointF p1, p2;
|
2014-10-23 10:38:57 +02:00
|
|
|
VGObject::LineIntersectCircle(QPointF(), radius, QLineF( QPointF(), splinePoint-controlPoint), p1, p2);
|
2013-08-05 10:37:56 +02:00
|
|
|
controlLine = new QGraphicsLineItem(QLineF(splinePoint-controlPoint, p1), this);
|
2014-03-26 05:39:07 +01:00
|
|
|
controlLine->setPen(QPen(Qt::red, qApp->toPixel(qApp->widthHairLine())));
|
2013-08-05 10:37:56 +02:00
|
|
|
controlLine->setFlag(QGraphicsItem::ItemStacksBehindParent, true);
|
|
|
|
}
|
|
|
|
|
2014-07-30 10:58:40 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VControlPointSpline::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
|
|
|
|
{
|
|
|
|
/* From question on StackOverflow
|
|
|
|
* https://stackoverflow.com/questions/10985028/how-to-remove-border-around-qgraphicsitem-when-selected
|
|
|
|
*
|
|
|
|
* There's no interface to disable the drawing of the selection border for the build-in QGraphicsItems. The only way
|
|
|
|
* I can think of is derive your own items from the build-in ones and override the paint() function:*/
|
|
|
|
QStyleOptionGraphicsItem myOption(*option);
|
|
|
|
myOption.state &= ~QStyle::State_Selected;
|
|
|
|
QGraphicsEllipseItem::paint(painter, &myOption, widget);
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
2014-08-19 13:16:00 +02:00
|
|
|
* @brief hoverEnterEvent handle hover enter events.
|
2014-06-13 19:02:41 +02:00
|
|
|
* @param event hover move event.
|
|
|
|
*/
|
2014-08-19 13:16:00 +02:00
|
|
|
void VControlPointSpline::hoverEnterEvent(QGraphicsSceneHoverEvent *event)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-03-26 05:39:07 +01:00
|
|
|
this->setPen(QPen(Qt::black, qApp->toPixel(qApp->widthMainLine())));
|
2015-02-12 12:55:35 +01:00
|
|
|
VApplication::setOverrideCursor(cursorArrowOpenHand, 1, 1);
|
2014-08-19 13:16:00 +02:00
|
|
|
QGraphicsEllipseItem::hoverEnterEvent(event);
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
void VControlPointSpline::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
|
|
|
|
{
|
2014-03-26 05:39:07 +01:00
|
|
|
this->setPen(QPen(Qt::black, qApp->toPixel(qApp->widthHairLine())));
|
2014-08-19 13:16:00 +02:00
|
|
|
//Disable cursor-arrow-openhand
|
2015-02-12 12:55:35 +01:00
|
|
|
VApplication::restoreOverrideCursor(cursorArrowOpenHand);
|
2014-08-19 13:16:00 +02:00
|
|
|
QGraphicsEllipseItem::hoverLeaveEvent(event);
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief itemChange handle item change.
|
|
|
|
* @param change change.
|
|
|
|
* @param value value.
|
|
|
|
* @return value.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
QVariant VControlPointSpline::itemChange(QGraphicsItem::GraphicsItemChange change, const QVariant &value)
|
|
|
|
{
|
|
|
|
if (change == ItemPositionChange && scene())
|
|
|
|
{
|
2013-09-11 16:14:21 +02:00
|
|
|
// value - new position.
|
2013-08-05 10:37:56 +02:00
|
|
|
QPointF newPos = value.toPointF();
|
2013-08-09 08:49:34 +02:00
|
|
|
emit ControlPointChangePosition(indexSpline, position, newPos);
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|
|
|
|
return QGraphicsItem::itemChange(change, value);
|
|
|
|
}
|
|
|
|
|
2014-08-19 13:16:00 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VControlPointSpline::mousePressEvent(QGraphicsSceneMouseEvent *event)
|
|
|
|
{
|
2014-08-29 16:10:47 +02:00
|
|
|
if (event->button() == Qt::LeftButton && event->type() != QEvent::GraphicsSceneMouseDoubleClick)
|
2014-08-19 13:16:00 +02:00
|
|
|
{
|
2015-02-12 12:55:35 +01:00
|
|
|
VApplication::setOverrideCursor(cursorArrowCloseHand, 1, 1);
|
2014-08-19 13:16:00 +02:00
|
|
|
}
|
|
|
|
QGraphicsEllipseItem::mousePressEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VControlPointSpline::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
|
|
|
|
{
|
2014-08-29 16:10:47 +02:00
|
|
|
if (event->button() == Qt::LeftButton && event->type() != QEvent::GraphicsSceneMouseDoubleClick)
|
2014-08-19 13:16:00 +02:00
|
|
|
{
|
|
|
|
//Disable cursor-arrow-closehand
|
2015-02-12 12:55:35 +01:00
|
|
|
VApplication::restoreOverrideCursor(cursorArrowCloseHand);
|
2014-08-19 13:16:00 +02:00
|
|
|
}
|
|
|
|
QGraphicsEllipseItem::mouseReleaseEvent(event);
|
|
|
|
}
|
|
|
|
|
2015-04-22 15:13:13 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VControlPointSpline::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
|
|
{
|
|
|
|
emit ShowContextMenu(event);
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief RefreshLine refresh line control point.
|
|
|
|
* @param indexSpline index spline in list.
|
|
|
|
* @param pos position point in spline.
|
|
|
|
* @param controlPoint control point.
|
|
|
|
* @param splinePoint spline point.
|
|
|
|
*/
|
2014-06-12 09:22:29 +02:00
|
|
|
void VControlPointSpline::RefreshLine(const qint32 &indexSpline, SplinePointPosition pos,
|
2013-11-04 21:35:15 +01:00
|
|
|
const QPointF &controlPoint, const QPointF &splinePoint)
|
|
|
|
{
|
|
|
|
if (this->indexSpline == indexSpline && this->position == pos)
|
|
|
|
{
|
2013-08-09 08:49:34 +02:00
|
|
|
QPointF p1, p2;
|
2014-10-23 10:38:57 +02:00
|
|
|
VGObject::LineIntersectCircle(QPointF(), radius, QLineF( QPointF(), splinePoint-controlPoint), p1, p2);
|
2013-08-09 08:49:34 +02:00
|
|
|
controlLine->setLine(QLineF(splinePoint-controlPoint, p1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief setEnabledPoint disable or enable control point.
|
|
|
|
* @param enable true - enable.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VControlPointSpline::setEnabledPoint(bool enable)
|
|
|
|
{
|
|
|
|
if (enable == true)
|
|
|
|
{
|
2014-03-26 05:39:07 +01:00
|
|
|
this->setPen(QPen(Qt::black, qApp->toPixel(qApp->widthHairLine())));
|
2013-08-09 08:49:34 +02:00
|
|
|
this->setFlag(QGraphicsItem::ItemIsSelectable, true);
|
|
|
|
this->setFlag(QGraphicsItem::ItemIsMovable, true);
|
|
|
|
this->setAcceptHoverEvents(true);
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-03-26 05:39:07 +01:00
|
|
|
this->setPen(QPen(Qt::gray, qApp->toPixel(qApp->widthHairLine())));
|
2013-08-09 08:49:34 +02:00
|
|
|
this->setFlag(QGraphicsItem::ItemIsSelectable, false);
|
|
|
|
this->setFlag(QGraphicsItem::ItemIsMovable, false);
|
|
|
|
this->setAcceptHoverEvents(false);
|
|
|
|
}
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|