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 vmaingraphicsscene.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-07-03 14:29:26 +02:00
|
|
|
#include "vmaingraphicsscene.h"
|
2014-06-17 11:50:11 +02:00
|
|
|
#include <QGraphicsSceneMouseEvent>
|
2014-06-24 10:23:39 +02:00
|
|
|
#include <QList>
|
|
|
|
#include <QGraphicsItem>
|
2015-12-28 09:00:10 +01:00
|
|
|
#include <QApplication>
|
2013-07-03 14:29:26 +02:00
|
|
|
|
2016-01-15 13:55:56 +01:00
|
|
|
#include "../vmisc/def.h"
|
|
|
|
#include "../ifc/ifcdef.h"
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief VMainGraphicsScene default constructor.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
VMainGraphicsScene::VMainGraphicsScene()
|
2016-01-15 13:55:56 +01:00
|
|
|
:QGraphicsScene(), horScrollBar(0), verScrollBar(0), scaleFactor(1), _transform(QTransform()), scenePos(QPointF()),
|
|
|
|
origins()
|
2014-05-02 13:11:30 +02:00
|
|
|
{}
|
2013-07-03 14:29:26 +02:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief VMainGraphicsScene constructor.
|
|
|
|
* @param sceneRect scene rect.
|
|
|
|
* @param parent parent object.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
VMainGraphicsScene::VMainGraphicsScene(const QRectF & sceneRect, QObject * parent)
|
2014-07-15 15:51:15 +02:00
|
|
|
:QGraphicsScene ( sceneRect, parent ), horScrollBar(0), verScrollBar(0), scaleFactor(1), _transform(QTransform()),
|
2016-01-15 13:55:56 +01:00
|
|
|
scenePos(QPointF()), origins()
|
2014-05-02 13:11:30 +02:00
|
|
|
{}
|
2013-07-03 14:29:26 +02:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief mouseMoveEvent handle mouse move events.
|
|
|
|
* @param event mouse move event.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VMainGraphicsScene::mouseMoveEvent(QGraphicsSceneMouseEvent* event)
|
|
|
|
{
|
2014-07-15 15:51:15 +02:00
|
|
|
scenePos = event->scenePos();
|
2013-07-03 14:29:26 +02:00
|
|
|
emit mouseMove(event->scenePos());
|
|
|
|
QGraphicsScene::mouseMoveEvent(event);
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief mousePressEvent mouse press events.
|
|
|
|
* @param event mouse press event
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VMainGraphicsScene::mousePressEvent(QGraphicsSceneMouseEvent *event)
|
|
|
|
{
|
2016-02-12 19:10:01 +01:00
|
|
|
if (event->button() == Qt::LeftButton && event->type() != QEvent::GraphicsSceneMouseDoubleClick)
|
|
|
|
{
|
|
|
|
emit MouseLeftPressed();
|
|
|
|
}
|
|
|
|
|
2013-07-03 14:29:26 +02:00
|
|
|
QGraphicsScene::mousePressEvent(event);
|
|
|
|
}
|
2013-07-25 14:00:51 +02:00
|
|
|
|
2016-02-12 19:10:01 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMainGraphicsScene::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
|
|
|
|
{
|
|
|
|
if (event->button() == Qt::LeftButton && event->type() != QEvent::GraphicsSceneMouseDoubleClick)
|
|
|
|
{
|
|
|
|
emit MouseLeftReleased();
|
|
|
|
}
|
|
|
|
QGraphicsScene::mouseReleaseEvent(event);
|
|
|
|
}
|
|
|
|
|
2016-01-15 13:55:56 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMainGraphicsScene::InitOrigins()
|
|
|
|
{
|
2016-02-10 17:45:49 +01:00
|
|
|
foreach (QGraphicsItem *item, origins)
|
|
|
|
{
|
|
|
|
if (this->items().contains(item))
|
|
|
|
{
|
|
|
|
delete item;
|
|
|
|
}
|
|
|
|
}
|
2016-01-15 13:55:56 +01:00
|
|
|
|
|
|
|
QPen originsPen(Qt::green, ToPixel(WidthHairLine(Unit::Mm), Unit::Mm), Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin);
|
|
|
|
QBrush axisTextBrush(Qt::green);
|
|
|
|
const qreal arrowAngle = 35.0;
|
|
|
|
const qreal arrowLength = 12.0;
|
|
|
|
|
|
|
|
{
|
|
|
|
// X axis
|
|
|
|
const QLineF lineX(QPointF(25, 0), QPointF(-5, 0));
|
|
|
|
QGraphicsLineItem *xLine1 = new QGraphicsLineItem(lineX);
|
|
|
|
xLine1->setPen(originsPen);
|
|
|
|
xLine1->setFlag(QGraphicsItem::ItemIgnoresTransformations);
|
|
|
|
xLine1->setZValue(-1.0);
|
|
|
|
addItem(xLine1);
|
|
|
|
origins.append(xLine1);
|
|
|
|
|
|
|
|
// Arrow left side
|
|
|
|
QLineF arrowLeftLine = lineX;
|
|
|
|
arrowLeftLine.setAngle(arrowLeftLine.angle()-arrowAngle);
|
|
|
|
arrowLeftLine.setLength(arrowLength);
|
|
|
|
QGraphicsLineItem *xLine2 = new QGraphicsLineItem(arrowLeftLine);
|
|
|
|
xLine2->setPen(originsPen);
|
|
|
|
xLine2->setFlag(QGraphicsItem::ItemIgnoresTransformations);
|
|
|
|
xLine2->setZValue(-1.0);
|
|
|
|
addItem(xLine2);
|
|
|
|
origins.append(xLine2);
|
|
|
|
|
|
|
|
// Arrow right side
|
|
|
|
QLineF arrowRightLine = lineX;
|
|
|
|
arrowRightLine.setAngle(arrowRightLine.angle()+arrowAngle);
|
|
|
|
arrowRightLine.setLength(arrowLength);
|
|
|
|
QGraphicsLineItem *xLine3 = new QGraphicsLineItem(arrowRightLine);
|
|
|
|
xLine3->setPen(originsPen);
|
|
|
|
xLine3->setFlag(QGraphicsItem::ItemIgnoresTransformations);
|
|
|
|
xLine3->setZValue(-1.0);
|
|
|
|
addItem(xLine3);
|
|
|
|
origins.append(xLine3);
|
|
|
|
|
|
|
|
// X axis text
|
|
|
|
QGraphicsSimpleTextItem *xOrigin = new QGraphicsSimpleTextItem(QStringLiteral("X"), xLine1);
|
|
|
|
xOrigin->setBrush(axisTextBrush);
|
|
|
|
xOrigin->setFlag(QGraphicsItem::ItemIgnoresTransformations);
|
|
|
|
xOrigin->setZValue(-1.0);
|
|
|
|
xOrigin->setPos(25, -(xOrigin->boundingRect().height()/2));
|
|
|
|
origins.append(xOrigin);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
// Y axis
|
|
|
|
const QLineF lineY(QPointF(0, 25), QPointF(0, -5));
|
|
|
|
QGraphicsLineItem *yLine1 = new QGraphicsLineItem(lineY);
|
|
|
|
yLine1->setPen(originsPen);
|
|
|
|
yLine1->setFlag(QGraphicsItem::ItemIgnoresTransformations);
|
|
|
|
yLine1->setZValue(-1.0);
|
|
|
|
addItem(yLine1);
|
|
|
|
origins.append(yLine1);
|
|
|
|
|
|
|
|
// Arrow left side
|
|
|
|
QLineF arrowLeftLine = lineY;
|
|
|
|
arrowLeftLine.setAngle(arrowLeftLine.angle()-arrowAngle);
|
|
|
|
arrowLeftLine.setLength(arrowLength);
|
|
|
|
QGraphicsLineItem *yLine2 = new QGraphicsLineItem(arrowLeftLine);
|
|
|
|
yLine2->setPen(originsPen);
|
|
|
|
yLine2->setFlag(QGraphicsItem::ItemIgnoresTransformations);
|
|
|
|
yLine2->setZValue(-1.0);
|
|
|
|
addItem(yLine2);
|
|
|
|
origins.append(yLine2);
|
|
|
|
|
|
|
|
// Arrow right side
|
|
|
|
QLineF arrowRightLine = lineY;
|
|
|
|
arrowRightLine.setAngle(arrowRightLine.angle()+arrowAngle);
|
|
|
|
arrowRightLine.setLength(arrowLength);
|
|
|
|
QGraphicsLineItem *yLine3 = new QGraphicsLineItem(arrowRightLine);
|
|
|
|
yLine3->setPen(originsPen);
|
|
|
|
yLine3->setFlag(QGraphicsItem::ItemIgnoresTransformations);
|
|
|
|
yLine3->setZValue(-1.0);
|
|
|
|
addItem(yLine3);
|
|
|
|
origins.append(yLine3);
|
|
|
|
|
|
|
|
// Y axis text
|
|
|
|
QGraphicsSimpleTextItem *yOrigin = new QGraphicsSimpleTextItem(QStringLiteral("Y"), yLine1);
|
|
|
|
yOrigin->setBrush(axisTextBrush);
|
|
|
|
yOrigin->setFlag(QGraphicsItem::ItemIgnoresTransformations);
|
|
|
|
yOrigin->setZValue(-1.0);
|
|
|
|
yOrigin->setPos(-(yOrigin->boundingRect().width()/2), 25);
|
|
|
|
origins.append(yOrigin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMainGraphicsScene::SetOriginsVisible(bool visible)
|
|
|
|
{
|
|
|
|
foreach (QGraphicsItem *item, origins)
|
|
|
|
{
|
|
|
|
item->setVisible(visible);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-15 15:51:15 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QPointF VMainGraphicsScene::getScenePos() const
|
|
|
|
{
|
|
|
|
return scenePos;
|
|
|
|
}
|
|
|
|
|
2016-01-13 14:47:38 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QRectF VMainGraphicsScene::VisibleItemsBoundingRect() const
|
|
|
|
{
|
|
|
|
QRectF rect;
|
|
|
|
foreach(QGraphicsItem *item, items())
|
|
|
|
{
|
|
|
|
if(not item->isVisible())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
rect = rect.united(item->sceneBoundingRect());
|
|
|
|
}
|
|
|
|
return rect;
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief transform return view transformation.
|
|
|
|
* @return view transformation.
|
|
|
|
*/
|
2014-01-11 15:09:44 +01:00
|
|
|
QTransform VMainGraphicsScene::transform() const
|
|
|
|
{
|
|
|
|
return _transform;
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief setTransform set view transformation.
|
|
|
|
* @param transform view transformation.
|
|
|
|
*/
|
2014-01-11 15:09:44 +01:00
|
|
|
void VMainGraphicsScene::setTransform(const QTransform &transform)
|
|
|
|
{
|
|
|
|
_transform = transform;
|
|
|
|
}
|
|
|
|
|
2014-06-24 10:23:39 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-05-25 08:24:16 +02:00
|
|
|
void VMainGraphicsScene::SetDisableTools(bool disable, const QString &namePP)
|
2014-06-24 10:23:39 +02:00
|
|
|
{
|
2015-05-25 08:24:16 +02:00
|
|
|
emit DisableItem(disable, namePP);
|
2014-06-24 10:23:39 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief ChoosedItem emit ChoosedObject signal.
|
|
|
|
* @param id object id.
|
|
|
|
* @param type object scene type.
|
|
|
|
*/
|
2014-06-12 09:22:29 +02:00
|
|
|
void VMainGraphicsScene::ChoosedItem(quint32 id, const SceneObject &type)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-07-25 14:00:51 +02:00
|
|
|
emit ChoosedObject(id, type);
|
|
|
|
}
|
2013-08-20 12:26:02 +02:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief SetFactor set current scale factor of scene.
|
|
|
|
* @param factor scene scale factor. scene scale factor.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VMainGraphicsScene::SetFactor(qreal factor)
|
|
|
|
{
|
2013-10-16 11:17:34 +02:00
|
|
|
scaleFactor=scaleFactor*factor;
|
|
|
|
emit NewFactor(scaleFactor);
|
|
|
|
}
|
2015-02-09 10:54:19 +01:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMainGraphicsScene::EnableItemMove(bool move)
|
|
|
|
{
|
|
|
|
emit EnableToolMove(move);
|
|
|
|
}
|
2015-04-23 17:06:17 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMainGraphicsScene::EnableDetailsMode(bool mode)
|
|
|
|
{
|
|
|
|
emit CurveDetailsMode(mode);
|
|
|
|
}
|
2016-03-31 16:01:41 +02:00
|
|
|
|
2016-03-31 19:10:20 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMainGraphicsScene::ItemsSelection(const SelectionType &type)
|
|
|
|
{
|
|
|
|
emit ItemSelection(type);
|
|
|
|
}
|
|
|
|
|
2016-03-31 16:01:41 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMainGraphicsScene::ToggleLabelSelection(bool enabled)
|
|
|
|
{
|
|
|
|
emit EnableLabelItemSelection(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMainGraphicsScene::TogglePointSelection(bool enabled)
|
|
|
|
{
|
|
|
|
emit EnablePointItemSelection(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMainGraphicsScene::ToggleArcSelection(bool enabled)
|
|
|
|
{
|
|
|
|
emit EnableArcItemSelection(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMainGraphicsScene::ToggleSplineSelection(bool enabled)
|
|
|
|
{
|
|
|
|
emit EnableSplineItemSelection(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMainGraphicsScene::ToggleSplinePathSelection(bool enabled)
|
|
|
|
{
|
|
|
|
emit EnableSplinePathItemSelection(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMainGraphicsScene::ToggleNodeLabelSelection(bool enabled)
|
|
|
|
{
|
|
|
|
emit EnableNodeLabelItemSelection(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMainGraphicsScene::ToggleNodePointSelection(bool enabled)
|
|
|
|
{
|
|
|
|
emit EnableNodePointItemSelection(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMainGraphicsScene::ToggleDetailSelection(bool enabled)
|
|
|
|
{
|
|
|
|
emit EnableDetailItemSelection(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMainGraphicsScene::ToggleLabelHover(bool enabled)
|
|
|
|
{
|
|
|
|
emit EnableLabelItemHover(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMainGraphicsScene::TogglePointHover(bool enabled)
|
|
|
|
{
|
|
|
|
emit EnablePointItemHover(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMainGraphicsScene::ToggleLineHover(bool enabled)
|
|
|
|
{
|
|
|
|
emit EnableLineItemHover(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMainGraphicsScene::ToggleArcHover(bool enabled)
|
|
|
|
{
|
|
|
|
emit EnableArcItemHover(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMainGraphicsScene::ToggleSplineHover(bool enabled)
|
|
|
|
{
|
|
|
|
emit EnableSplineItemHover(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMainGraphicsScene::ToggleSplinePathHover(bool enabled)
|
|
|
|
{
|
|
|
|
emit EnableSplinePathItemHover(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMainGraphicsScene::ToggleNodeLabelHover(bool enabled)
|
|
|
|
{
|
|
|
|
emit EnableNodeLabelItemHover(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMainGraphicsScene::ToggleNodePointHover(bool enabled)
|
|
|
|
{
|
|
|
|
emit EnableNodePointItemHover(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VMainGraphicsScene::ToggleDetailHover(bool enabled)
|
|
|
|
{
|
|
|
|
emit EnableDetailItemHover(enabled);
|
|
|
|
}
|