2014-09-24 09:38:16 +00:00
|
|
|
/*
|
2015-02-20 14:56:22 +00:00
|
|
|
Copyright 2006-2015 The QElectroTech Team
|
2014-09-24 09:38:16 +00:00
|
|
|
This file is part of QElectroTech.
|
|
|
|
|
|
|
|
QElectroTech is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
QElectroTech is distributed in the hope that it will be useful,
|
|
|
|
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 QElectroTech. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#include "dveventaddshape.h"
|
|
|
|
#include "diagramview.h"
|
|
|
|
#include "qetshapeitem.h"
|
|
|
|
#include "diagram.h"
|
|
|
|
#include "diagramcommands.h"
|
|
|
|
#include <QMouseEvent>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief DVEventAddShape::DVEventAddShape
|
|
|
|
* Default constructor
|
|
|
|
* @param dv, the diagram view where operate this event
|
|
|
|
* @param shape_type, the shape type to draw
|
|
|
|
*/
|
|
|
|
DVEventAddShape::DVEventAddShape(DiagramView *dv, QetShapeItem::ShapeType shape_type) :
|
|
|
|
DVEventInterface(dv),
|
|
|
|
m_shape_type (shape_type),
|
2014-09-28 11:42:08 +00:00
|
|
|
m_shape_item (nullptr),
|
|
|
|
m_help_horiz (nullptr),
|
|
|
|
m_help_verti (nullptr)
|
2014-12-29 23:18:00 +00:00
|
|
|
{
|
|
|
|
m_dv -> setContextMenuPolicy(Qt::NoContextMenu);
|
|
|
|
}
|
2014-09-24 09:38:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief DVEventAddShape::~DVEventAddShape
|
|
|
|
*/
|
2014-12-29 23:18:00 +00:00
|
|
|
DVEventAddShape::~DVEventAddShape()
|
|
|
|
{
|
|
|
|
if (m_running || m_abort)
|
|
|
|
{
|
2014-09-24 09:38:16 +00:00
|
|
|
m_diagram -> removeItem(m_shape_item);
|
|
|
|
delete m_shape_item;
|
|
|
|
}
|
2014-09-28 11:42:08 +00:00
|
|
|
delete m_help_horiz;
|
|
|
|
delete m_help_verti;
|
2014-09-24 09:38:16 +00:00
|
|
|
m_dv -> setContextMenuPolicy(Qt::DefaultContextMenu);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief DVEventAddShape::mousePressEvent
|
|
|
|
* Action when mouse is pressed
|
|
|
|
* @param event : event of mouse press
|
|
|
|
* @return : true if this event is managed, otherwise false
|
|
|
|
*/
|
2014-12-29 23:18:00 +00:00
|
|
|
bool DVEventAddShape::mousePressEvent(QMouseEvent *event)
|
|
|
|
{
|
2014-09-24 09:38:16 +00:00
|
|
|
if (!m_dv->isInteractive() && m_diagram->isReadOnly()) return false;
|
|
|
|
|
|
|
|
QPointF pos = m_dv->mapToScene(event->pos());
|
|
|
|
|
2014-12-29 23:18:00 +00:00
|
|
|
//Action for left mouse click
|
|
|
|
if (event -> button() == Qt::LeftButton)
|
|
|
|
{
|
|
|
|
//Create shape item
|
|
|
|
if (!m_shape_item)
|
|
|
|
{
|
|
|
|
m_shape_item = new QetShapeItem(pos, pos, m_shape_type);
|
|
|
|
m_diagram -> addItem (m_shape_item);
|
|
|
|
m_running = true;
|
|
|
|
return true;
|
|
|
|
}
|
2014-09-24 09:38:16 +00:00
|
|
|
|
2014-12-29 23:18:00 +00:00
|
|
|
//If current item isn't a polyline, add it with an undo command
|
|
|
|
if (m_shape_type != QetShapeItem::Polyline)
|
|
|
|
{
|
|
|
|
m_shape_item -> setP2 (pos);
|
|
|
|
m_diagram -> undoStack().push (new AddItemCommand<QetShapeItem *> (m_shape_item, m_diagram));
|
|
|
|
m_shape_item = nullptr; //< set to nullptr for create new shape at next left clic
|
|
|
|
}
|
|
|
|
//Else add a new point to polyline
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_shape_item -> setNextPoint (pos);
|
|
|
|
}
|
2014-09-24 09:38:16 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-12-29 23:18:00 +00:00
|
|
|
if (event -> button() == Qt::RightButton)
|
2014-09-24 09:38:16 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief DVEventAddShape::mouseMoveEvent
|
|
|
|
* Action when mouse move
|
|
|
|
* @param event : event of mouse move
|
|
|
|
* @return : true if this event is managed, otherwise false
|
|
|
|
*/
|
2014-12-29 23:18:00 +00:00
|
|
|
bool DVEventAddShape::mouseMoveEvent(QMouseEvent *event)
|
|
|
|
{
|
2014-09-28 11:42:08 +00:00
|
|
|
updateHelpCross(event->pos());
|
2014-09-24 09:38:16 +00:00
|
|
|
if (!m_running) return false;
|
2014-12-29 23:18:00 +00:00
|
|
|
|
|
|
|
if (m_shape_item && event -> buttons() == Qt::NoButton)
|
|
|
|
{
|
2014-09-24 09:38:16 +00:00
|
|
|
m_shape_item -> setP2 (m_dv -> mapToScene (event -> pos()));
|
|
|
|
return true;
|
|
|
|
}
|
2014-12-29 23:18:00 +00:00
|
|
|
|
2014-09-24 09:38:16 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief DVEventAddShape::mouseReleaseEvent
|
|
|
|
* Action when mouse button is released
|
|
|
|
* @param event : event of mouse release
|
|
|
|
* @return : true if this event is managed, otherwise false
|
|
|
|
*/
|
2014-12-29 23:18:00 +00:00
|
|
|
bool DVEventAddShape::mouseReleaseEvent(QMouseEvent *event)
|
|
|
|
{
|
|
|
|
if (event -> button() == Qt::RightButton)
|
|
|
|
{
|
|
|
|
//If shape is created, we manage right click
|
|
|
|
if (m_shape_item)
|
|
|
|
{
|
|
|
|
//Shape is a polyline and have three points or more we just remove the last point
|
|
|
|
if (m_shape_type == QetShapeItem::Polyline && (m_shape_item -> pointsCount() >= 3) )
|
|
|
|
{
|
|
|
|
m_shape_item -> removePoints();
|
|
|
|
m_shape_item -> setP2(m_dv -> mapToScene (event -> pos())); //Set the new last point under the cursor
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//For other case, we remove item from scene
|
|
|
|
m_diagram -> removeItem(m_shape_item);
|
|
|
|
delete m_shape_item;
|
|
|
|
m_shape_item = nullptr;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Else (no shape), we set to false the running status
|
|
|
|
//for indicate to the owner of this event that everything is done
|
2014-09-24 09:38:16 +00:00
|
|
|
m_running = false;
|
|
|
|
return true;
|
|
|
|
}
|
2014-12-29 23:18:00 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief DVEventAddShape::mouseDoubleClickEvent
|
|
|
|
* @param event
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
bool DVEventAddShape::mouseDoubleClickEvent(QMouseEvent *event)
|
|
|
|
{
|
|
|
|
//If current item is a polyline, add it with an undo command
|
|
|
|
if (m_shape_item && m_shape_type == QetShapeItem::Polyline && event -> button() == Qt::LeftButton)
|
|
|
|
{
|
|
|
|
m_shape_item -> setP2 (m_dv -> mapToScene (event -> pos()));
|
|
|
|
m_diagram -> undoStack().push (new AddItemCommand<QetShapeItem *> (m_shape_item, m_diagram));
|
|
|
|
m_shape_item = nullptr; //< set to nullptr for create new shape at next left clic
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-09-24 09:38:16 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-09-28 11:42:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief DVEventAddShape::updateHelpCross
|
|
|
|
* Create and update the position of the cross to help user for draw new shape
|
|
|
|
* @param event
|
|
|
|
*/
|
2014-12-29 23:18:00 +00:00
|
|
|
void DVEventAddShape::updateHelpCross(const QPoint &p)
|
|
|
|
{
|
|
|
|
//If line isn't created yet, we create it.
|
|
|
|
if (!m_help_horiz || !m_help_verti)
|
|
|
|
{
|
2014-09-28 11:42:08 +00:00
|
|
|
QPen pen;
|
2014-11-12 14:44:50 +00:00
|
|
|
pen.setWidthF(0.4);
|
|
|
|
pen.setCosmetic(true);
|
|
|
|
pen.setColor(Qt::darkGray);
|
2014-12-29 23:18:00 +00:00
|
|
|
|
2015-03-18 18:07:18 +00:00
|
|
|
QRectF rect = m_diagram -> border_and_titleblock.insideBorderRect();
|
2015-03-09 10:16:20 +00:00
|
|
|
|
2014-12-29 23:18:00 +00:00
|
|
|
if (!m_help_horiz)
|
|
|
|
{
|
2015-03-09 10:16:20 +00:00
|
|
|
m_help_horiz = new QGraphicsLineItem(rect.topLeft().x(), 0, rect.topRight().x(), 0);
|
|
|
|
m_help_horiz -> setPen(pen);
|
2015-03-02 20:14:56 +00:00
|
|
|
m_diagram -> addItem(m_help_horiz);
|
2014-09-28 11:42:08 +00:00
|
|
|
}
|
2014-12-29 23:18:00 +00:00
|
|
|
|
|
|
|
if (!m_help_verti)
|
|
|
|
{
|
2015-03-09 10:16:20 +00:00
|
|
|
m_help_verti = new QGraphicsLineItem(0, rect.topLeft().y(), 0, rect.bottomLeft().y());
|
|
|
|
m_help_verti -> setPen(pen);
|
2015-03-02 20:14:56 +00:00
|
|
|
m_diagram -> addItem(m_help_verti);
|
2014-09-28 11:42:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-29 23:18:00 +00:00
|
|
|
//Update the position of the cross
|
2014-09-28 11:42:08 +00:00
|
|
|
QPointF point = Diagram::snapToGrid(m_dv->mapToScene(p));
|
|
|
|
|
|
|
|
m_help_horiz->setY(point.y());
|
|
|
|
m_help_verti->setX(point.x());
|
|
|
|
}
|