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 vtoolline.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-25 20:39:51 +02:00
|
|
|
#include "vtoolline.h"
|
2014-02-21 14:04:39 +01:00
|
|
|
#include "../../dialogs/tools/dialogline.h"
|
2014-04-17 19:18:26 +02:00
|
|
|
#include <QKeyEvent>
|
2015-10-08 20:11:50 +02:00
|
|
|
#include "../vgeometry/vpointf.h"
|
2014-06-08 20:10:57 +02:00
|
|
|
#include "../../dialogs/tools/dialogline.h"
|
2014-09-03 15:52:16 +02:00
|
|
|
#include "../../visualization/vistoolline.h"
|
2013-07-25 20:39:51 +02:00
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
const QString VToolLine::TagName = QStringLiteral("line");
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief VToolLine constructor.
|
|
|
|
* @param doc dom document container.
|
|
|
|
* @param data container with variables.
|
|
|
|
* @param id object id in container.
|
|
|
|
* @param firstPoint id first line point.
|
|
|
|
* @param secondPoint id second line point.
|
|
|
|
* @param typeLine line type.
|
|
|
|
* @param typeCreation way we create this tool.
|
|
|
|
* @param parent parent object.
|
|
|
|
*/
|
2015-06-18 19:23:24 +02:00
|
|
|
VToolLine::VToolLine(VAbstractPattern *doc, VContainer *data, quint32 id, quint32 firstPoint, quint32 secondPoint,
|
2015-02-07 12:17:31 +01:00
|
|
|
const QString &typeLine, const QString &lineColor, const Source &typeCreation,
|
|
|
|
QGraphicsItem *parent)
|
2014-02-06 14:57:23 +01:00
|
|
|
:VDrawTool(doc, data, id), QGraphicsLineItem(parent), firstPoint(firstPoint), secondPoint(secondPoint)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-02-12 11:55:24 +01:00
|
|
|
this->typeLine = typeLine;
|
2015-02-07 12:17:31 +01:00
|
|
|
this->lineColor = lineColor;
|
2013-12-29 17:48:57 +01:00
|
|
|
//Line
|
2014-08-21 14:44:40 +02:00
|
|
|
const QSharedPointer<VPointF> first = data->GeometricObject<VPointF>(firstPoint);
|
|
|
|
const QSharedPointer<VPointF> second = data->GeometricObject<VPointF>(secondPoint);
|
2013-12-29 17:48:57 +01:00
|
|
|
this->setLine(QLineF(first->toQPointF(), second->toQPointF()));
|
2013-07-25 20:39:51 +02:00
|
|
|
this->setFlag(QGraphicsItem::ItemStacksBehindParent, true);
|
|
|
|
this->setFlag(QGraphicsItem::ItemIsSelectable, true);
|
2014-01-03 16:13:43 +01:00
|
|
|
this->setFlag(QGraphicsItem::ItemIsFocusable, true);
|
2013-07-28 00:18:06 +02:00
|
|
|
this->setAcceptHoverEvents(true);
|
2015-06-15 11:32:27 +02:00
|
|
|
this->setPen(QPen(Qt::black, qApp->toPixel(WidthHairLine(*VAbstractTool::data.GetPatternUnit()))/factor,
|
|
|
|
LineStyleToPenStyle(typeLine)));
|
2013-07-25 20:39:51 +02:00
|
|
|
|
2015-05-28 12:16:59 +02:00
|
|
|
ToolCreation(typeCreation);
|
2013-07-25 20:39:51 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief setDialog set dialog when user want change tool option.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolLine::setDialog()
|
|
|
|
{
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialog != nullptr);
|
2014-02-06 14:57:23 +01:00
|
|
|
DialogLine *dialogTool = qobject_cast<DialogLine*>(dialog);
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialogTool != nullptr);
|
2015-02-03 11:17:04 +01:00
|
|
|
dialogTool->SetFirstPoint(firstPoint);
|
|
|
|
dialogTool->SetSecondPoint(secondPoint);
|
|
|
|
dialogTool->SetTypeLine(typeLine);
|
2015-02-06 18:43:31 +01:00
|
|
|
dialogTool->SetLineColor(lineColor);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief Create help create tool form GUI.
|
|
|
|
* @param dialog dialog.
|
|
|
|
* @param scene pointer to scene.
|
|
|
|
* @param doc dom document container.
|
|
|
|
* @param data container with variables.
|
|
|
|
*/
|
2015-06-18 19:23:24 +02:00
|
|
|
VToolLine *VToolLine::Create(DialogTool *dialog, VMainGraphicsScene *scene, VAbstractPattern *doc, VContainer *data)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialog != nullptr);
|
2014-02-06 14:57:23 +01:00
|
|
|
DialogLine *dialogTool = qobject_cast<DialogLine*>(dialog);
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialogTool != nullptr);
|
2015-02-03 11:17:04 +01:00
|
|
|
const quint32 firstPoint = dialogTool->GetFirstPoint();
|
|
|
|
const quint32 secondPoint = dialogTool->GetSecondPoint();
|
|
|
|
const QString typeLine = dialogTool->GetTypeLine();
|
2015-02-07 12:17:31 +01:00
|
|
|
const QString lineColor = dialogTool->GetLineColor();
|
2014-07-16 19:08:24 +02:00
|
|
|
|
2015-10-28 15:22:36 +01:00
|
|
|
VToolLine *line = Create(0, firstPoint, secondPoint, typeLine, lineColor, scene, doc, data, Document::FullParse,
|
|
|
|
Source::FromGui);
|
2014-07-16 19:08:24 +02:00
|
|
|
if (line != nullptr)
|
|
|
|
{
|
|
|
|
line->dialog=dialogTool;
|
|
|
|
}
|
|
|
|
return line;
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief Create help create tool.
|
|
|
|
* @param _id tool id, 0 if tool doesn't exist yet.
|
|
|
|
* @param firstPoint id first line point.
|
|
|
|
* @param secondPoint id second line point.
|
|
|
|
* @param typeLine line type.
|
|
|
|
* @param scene pointer to scene.
|
|
|
|
* @param doc dom document container.
|
|
|
|
* @param data container with variables.
|
|
|
|
* @param parse parser file mode.
|
|
|
|
* @param typeCreation way we create this tool.
|
|
|
|
*/
|
2014-07-16 19:08:24 +02:00
|
|
|
VToolLine * VToolLine::Create(const quint32 &_id, const quint32 &firstPoint, const quint32 &secondPoint,
|
2015-02-07 12:17:31 +01:00
|
|
|
const QString &typeLine, const QString &lineColor, VMainGraphicsScene *scene,
|
2015-06-18 19:23:24 +02:00
|
|
|
VAbstractPattern *doc, VContainer *data, const Document &parse,
|
|
|
|
const Source &typeCreation)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(scene != nullptr);
|
|
|
|
SCASSERT(doc != nullptr);
|
|
|
|
SCASSERT(data != nullptr);
|
2014-02-25 15:40:24 +01:00
|
|
|
quint32 id = _id;
|
2014-06-12 09:22:29 +02:00
|
|
|
if (typeCreation == Source::FromGui)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-10-09 18:24:28 +02:00
|
|
|
id = data->getNextId();
|
2013-10-10 20:45:58 +02:00
|
|
|
data->AddLine(firstPoint, secondPoint);
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-10-21 09:45:49 +02:00
|
|
|
data->UpdateId(id);
|
2013-10-10 20:45:58 +02:00
|
|
|
data->AddLine(firstPoint, secondPoint);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (parse != Document::FullParse)
|
|
|
|
{
|
2013-10-09 18:24:28 +02:00
|
|
|
doc->UpdateToolData(id, data);
|
|
|
|
}
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
2014-08-26 20:31:28 +02:00
|
|
|
VDrawTool::AddRecord(id, Tool::Line, doc);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (parse == Document::FullParse)
|
|
|
|
{
|
2015-02-07 12:17:31 +01:00
|
|
|
VToolLine *line = new VToolLine(doc, data, id, firstPoint, secondPoint, typeLine, lineColor, typeCreation);
|
2013-08-13 18:48:36 +02:00
|
|
|
scene->addItem(line);
|
|
|
|
connect(line, &VToolLine::ChoosedTool, scene, &VMainGraphicsScene::ChoosedItem);
|
2013-10-16 11:17:34 +02:00
|
|
|
connect(scene, &VMainGraphicsScene::NewFactor, line, &VToolLine::SetFactor);
|
2014-06-24 10:23:39 +02:00
|
|
|
connect(scene, &VMainGraphicsScene::DisableItem, line, &VToolLine::Disable);
|
2013-09-30 18:29:03 +02:00
|
|
|
doc->AddTool(id, line);
|
|
|
|
doc->IncrementReferens(firstPoint);
|
|
|
|
doc->IncrementReferens(secondPoint);
|
2014-07-16 19:08:24 +02:00
|
|
|
return line;
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
2014-07-16 19:08:24 +02:00
|
|
|
return nullptr;
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-07-24 12:20:26 +02:00
|
|
|
void VToolLine::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;
|
|
|
|
QGraphicsLineItem::paint(painter, &myOption, widget);
|
|
|
|
}
|
|
|
|
|
2014-08-30 21:58:31 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QString VToolLine::getTagName() const
|
|
|
|
{
|
|
|
|
return VToolLine::TagName;
|
|
|
|
}
|
|
|
|
|
2014-07-24 12:20:26 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief FullUpdateFromFile update tool data form file.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolLine::FullUpdateFromFile()
|
|
|
|
{
|
2015-02-06 18:43:31 +01:00
|
|
|
ReadAttributes();
|
2013-10-16 11:17:34 +02:00
|
|
|
RefreshGeometry();
|
2015-05-23 13:40:43 +02:00
|
|
|
SetVisualization();
|
2013-07-25 20:39:51 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief ShowTool highlight tool.
|
|
|
|
* @param id object id in container
|
|
|
|
* @param enable enable or disable highlight.
|
|
|
|
*/
|
2015-02-07 16:18:18 +01:00
|
|
|
void VToolLine::ShowTool(quint32 id, bool enable)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2015-02-07 16:18:18 +01:00
|
|
|
ShowItem(this, id, enable);
|
2013-08-15 22:39:00 +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.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolLine::SetFactor(qreal factor)
|
|
|
|
{
|
2013-10-16 11:17:34 +02:00
|
|
|
VDrawTool::SetFactor(factor);
|
|
|
|
RefreshGeometry();
|
|
|
|
}
|
|
|
|
|
2014-06-24 10:23:39 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-05-25 08:24:16 +02:00
|
|
|
void VToolLine::Disable(bool disable, const QString &namePP)
|
2014-06-24 10:23:39 +02:00
|
|
|
{
|
2015-05-25 08:24:16 +02:00
|
|
|
enabled = !CorrectDisable(disable, namePP);
|
2015-02-06 13:31:40 +01:00
|
|
|
this->setEnabled(enabled);
|
2015-06-15 11:32:27 +02:00
|
|
|
this->setPen(QPen(CorrectColor(baseColor),
|
|
|
|
qApp->toPixel(WidthHairLine(*VAbstractTool::data.GetPatternUnit()))/factor,
|
2015-05-25 08:24:16 +02:00
|
|
|
LineStyleToPenStyle(typeLine)));
|
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 contextMenuEvent handle context menu events.
|
|
|
|
* @param event context menu event.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolLine::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
|
|
{
|
2015-11-02 17:25:29 +01:00
|
|
|
try
|
|
|
|
{
|
|
|
|
ContextMenu<DialogLine>(this, event);
|
|
|
|
}
|
|
|
|
catch(const VExceptionToolWasDeleted &e)
|
|
|
|
{
|
|
|
|
Q_UNUSED(e);
|
|
|
|
return;//Leave this method immediately!!!
|
|
|
|
}
|
2013-07-25 20:39:51 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief AddToFile add tag with informations about tool into file.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolLine::AddToFile()
|
|
|
|
{
|
2013-10-29 14:45:07 +01:00
|
|
|
QDomElement domElement = doc->createElement(TagName);
|
2014-08-30 21:58:31 +02:00
|
|
|
QSharedPointer<VGObject> obj = QSharedPointer<VGObject> ();
|
|
|
|
SaveOptions(domElement, obj);
|
2013-09-10 14:29:06 +02:00
|
|
|
AddToCalculation(domElement);
|
2013-07-25 20:39:51 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief RefreshDataInFile refresh attributes in file. If attributes don't exist create them.
|
|
|
|
*/
|
2013-12-24 12:24:29 +01:00
|
|
|
void VToolLine::RefreshDataInFile()
|
|
|
|
{
|
2015-02-11 11:43:50 +01:00
|
|
|
QDomElement domElement = doc->elementById(id);
|
2013-12-24 12:24:29 +01:00
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
2014-08-30 21:58:31 +02:00
|
|
|
QSharedPointer<VGObject> obj = QSharedPointer<VGObject> ();
|
|
|
|
SaveOptions(domElement, obj);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qDebug()<<"Can't find tool with id ="<< id << Q_FUNC_INFO;
|
2013-12-24 12:24:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
* @param event hover enter event.
|
2014-06-13 19:02:41 +02:00
|
|
|
*/
|
2014-08-19 13:16:00 +02:00
|
|
|
void VToolLine::hoverEnterEvent(QGraphicsSceneHoverEvent *event)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-07-28 00:18:06 +02:00
|
|
|
Q_UNUSED(event);
|
2015-06-15 11:32:27 +02:00
|
|
|
this->setPen(QPen(CorrectColor(lineColor),
|
|
|
|
qApp->toPixel(WidthMainLine(*VAbstractTool::data.GetPatternUnit()))/factor,
|
2015-02-06 12:41:30 +01:00
|
|
|
LineStyleToPenStyle(typeLine)));
|
2013-07-28 00:18:06 +02:00
|
|
|
}
|
2013-07-25 20:39:51 +02:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief hoverLeaveEvent handle hover leave events.
|
|
|
|
* @param event hover leave event.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolLine::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
|
|
|
|
{
|
2013-07-28 00:18:06 +02:00
|
|
|
Q_UNUSED(event);
|
2015-02-08 11:56:32 +01:00
|
|
|
if (vis == nullptr)
|
|
|
|
{
|
2015-06-15 11:32:27 +02:00
|
|
|
this->setPen(QPen(CorrectColor(lineColor),
|
|
|
|
qApp->toPixel(WidthHairLine(*VAbstractTool::data.GetPatternUnit()))/factor,
|
2015-02-08 11:56:32 +01:00
|
|
|
LineStyleToPenStyle(typeLine)));
|
|
|
|
}
|
2013-07-25 20:39:51 +02:00
|
|
|
}
|
2013-07-28 00:18:06 +02:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief RemoveReferens decrement value of reference.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolLine::RemoveReferens()
|
|
|
|
{
|
2013-09-30 18:29:03 +02:00
|
|
|
doc->DecrementReferens(firstPoint);
|
|
|
|
doc->DecrementReferens(secondPoint);
|
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
*/
|
2014-01-03 16:13:43 +01:00
|
|
|
QVariant VToolLine::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-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief keyReleaseEvent handle key realse events.
|
|
|
|
* @param event key realse event.
|
|
|
|
*/
|
2014-01-03 16:13:43 +01:00
|
|
|
void VToolLine::keyReleaseEvent(QKeyEvent *event)
|
|
|
|
{
|
|
|
|
switch (event->key())
|
|
|
|
{
|
|
|
|
case Qt::Key_Delete:
|
2015-11-02 17:25:29 +01:00
|
|
|
try
|
|
|
|
{
|
|
|
|
DeleteTool();
|
|
|
|
}
|
|
|
|
catch(const VExceptionToolWasDeleted &e)
|
|
|
|
{
|
|
|
|
Q_UNUSED(e);
|
|
|
|
return;//Leave this method immediately!!!
|
|
|
|
}
|
|
|
|
break;
|
2014-01-03 16:13:43 +01:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
QGraphicsItem::keyReleaseEvent ( event );
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief SaveDialog save options into file after change in dialog.
|
|
|
|
*/
|
2014-02-06 14:57:23 +01:00
|
|
|
void VToolLine::SaveDialog(QDomElement &domElement)
|
|
|
|
{
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialog != nullptr);
|
2014-02-06 14:57:23 +01:00
|
|
|
DialogLine *dialogTool = qobject_cast<DialogLine*>(dialog);
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialogTool != nullptr);
|
2015-02-03 11:17:04 +01:00
|
|
|
doc->SetAttribute(domElement, AttrFirstPoint, QString().setNum(dialogTool->GetFirstPoint()));
|
|
|
|
doc->SetAttribute(domElement, AttrSecondPoint, QString().setNum(dialogTool->GetSecondPoint()));
|
|
|
|
doc->SetAttribute(domElement, AttrTypeLine, dialogTool->GetTypeLine());
|
2015-02-06 18:50:33 +01:00
|
|
|
doc->SetAttribute(domElement, AttrLineColor, dialogTool->GetLineColor());
|
2014-02-06 14:57:23 +01:00
|
|
|
}
|
|
|
|
|
2014-08-30 21:58:31 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VToolLine::SaveOptions(QDomElement &tag, QSharedPointer<VGObject> &obj)
|
|
|
|
{
|
2015-05-28 14:13:37 +02:00
|
|
|
VDrawTool::SaveOptions(tag, obj);
|
2014-08-30 21:58:31 +02:00
|
|
|
|
|
|
|
doc->SetAttribute(tag, AttrFirstPoint, firstPoint);
|
|
|
|
doc->SetAttribute(tag, AttrSecondPoint, secondPoint);
|
|
|
|
doc->SetAttribute(tag, AttrTypeLine, typeLine);
|
2015-02-06 19:05:52 +01:00
|
|
|
doc->SetAttribute(tag, AttrLineColor, lineColor);
|
2014-08-30 21:58:31 +02:00
|
|
|
}
|
|
|
|
|
2015-02-06 18:43:31 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VToolLine::ReadToolAttributes(const QDomElement &domElement)
|
|
|
|
{
|
|
|
|
firstPoint = doc->GetParametrUInt(domElement, AttrFirstPoint, NULL_ID_STR);
|
|
|
|
secondPoint = doc->GetParametrUInt(domElement, AttrSecondPoint, NULL_ID_STR);
|
|
|
|
typeLine = doc->GetParametrString(domElement, AttrTypeLine, TypeLineLine);
|
|
|
|
lineColor = doc->GetParametrString(domElement, AttrLineColor, ColorBlack);
|
|
|
|
}
|
|
|
|
|
2015-05-23 13:40:43 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VToolLine::SetVisualization()
|
|
|
|
{
|
|
|
|
if (vis != nullptr)
|
|
|
|
{
|
|
|
|
VisToolLine *visual = qobject_cast<VisToolLine *>(vis);
|
|
|
|
SCASSERT(visual != nullptr);
|
|
|
|
|
|
|
|
visual->setPoint1Id(firstPoint);
|
|
|
|
visual->setPoint2Id(secondPoint);
|
|
|
|
visual->setLineStyle(VAbstractTool::LineStyleToPenStyle(typeLine));
|
|
|
|
visual->RefreshGeometry();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-01 17:29:43 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-02-03 11:17:04 +01:00
|
|
|
quint32 VToolLine::GetSecondPoint() const
|
2014-09-01 17:29:43 +02:00
|
|
|
{
|
|
|
|
return secondPoint;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-02-03 11:17:04 +01:00
|
|
|
void VToolLine::SetSecondPoint(const quint32 &value)
|
2014-09-01 17:29:43 +02:00
|
|
|
{
|
|
|
|
if (value != NULL_ID)
|
|
|
|
{
|
|
|
|
secondPoint = value;
|
|
|
|
|
2015-02-07 15:48:48 +01:00
|
|
|
QSharedPointer<VGObject> obj;//We don't have object for line in data container. Just will send empty object.
|
2014-09-01 17:29:43 +02:00
|
|
|
SaveOption(obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-03 15:52:16 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VToolLine::ShowVisualization(bool show)
|
|
|
|
{
|
|
|
|
if (show)
|
|
|
|
{
|
|
|
|
if (vis == nullptr)
|
|
|
|
{
|
2015-05-23 13:40:43 +02:00
|
|
|
AddVisualization<VisToolLine>();
|
|
|
|
SetVisualization();
|
2014-09-03 15:52:16 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-05-23 13:40:43 +02:00
|
|
|
if (VisToolLine *visual = qobject_cast<VisToolLine *>(vis))
|
2014-09-03 15:52:16 +02:00
|
|
|
{
|
|
|
|
visual->show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
delete vis;
|
|
|
|
vis = nullptr;
|
2015-02-08 11:56:32 +01:00
|
|
|
hoverLeaveEvent(nullptr);
|
2014-09-03 15:52:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-26 18:48:46 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-02-03 11:17:04 +01:00
|
|
|
void VToolLine::SetTypeLine(const QString &value)
|
2014-09-26 18:48:46 +02:00
|
|
|
{
|
|
|
|
typeLine = value;
|
|
|
|
|
|
|
|
QSharedPointer<VGObject> obj;//We don't have object for line in data container. Just will send empty object.
|
|
|
|
SaveOption(obj);
|
|
|
|
}
|
|
|
|
|
2015-02-07 15:42:49 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VToolLine::SetLineColor(const QString &value)
|
|
|
|
{
|
|
|
|
lineColor = value;
|
|
|
|
|
|
|
|
QSharedPointer<VGObject> obj;//We don't have object for line in data container. Just will send empty object.
|
|
|
|
SaveOption(obj);
|
|
|
|
}
|
|
|
|
|
2014-09-01 17:29:43 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-02-03 11:17:04 +01:00
|
|
|
quint32 VToolLine::GetFirstPoint() const
|
2014-09-01 17:29:43 +02:00
|
|
|
{
|
|
|
|
return firstPoint;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-02-03 11:17:04 +01:00
|
|
|
void VToolLine::SetFirstPoint(const quint32 &value)
|
2014-09-01 17:29:43 +02:00
|
|
|
{
|
|
|
|
if (value != NULL_ID)
|
|
|
|
{
|
|
|
|
firstPoint = value;
|
|
|
|
|
2015-02-07 15:48:48 +01:00
|
|
|
QSharedPointer<VGObject> obj;//We don't have object for line in data container. Just will send empty object.
|
2014-09-01 17:29:43 +02:00
|
|
|
SaveOption(obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief RefreshGeometry refresh item on scene.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolLine::RefreshGeometry()
|
|
|
|
{
|
2014-08-21 14:44:40 +02:00
|
|
|
const QSharedPointer<VPointF> first = VAbstractTool::data.GeometricObject<VPointF>(firstPoint);
|
|
|
|
const QSharedPointer<VPointF> second = VAbstractTool::data.GeometricObject<VPointF>(secondPoint);
|
2013-12-29 17:48:57 +01:00
|
|
|
this->setLine(QLineF(first->toQPointF(), second->toQPointF()));
|
2015-02-08 11:56:32 +01:00
|
|
|
this->setPen(QPen(CorrectColor(lineColor), pen().widthF(), LineStyleToPenStyle(typeLine)));
|
2013-10-16 11:17:34 +02:00
|
|
|
}
|