e333c9bc08
--HG-- branch : develop
540 lines
19 KiB
C++
540 lines
19 KiB
C++
/************************************************************************
|
|
**
|
|
** @file vtoolline.cpp
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
** @date November 15, 2013
|
|
**
|
|
** @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-2015 Valentina project
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
|
**
|
|
** Valentina 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 3 of the License, or
|
|
** (at your option) any later version.
|
|
**
|
|
** Valentina 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 Valentina. If not, see <http://www.gnu.org/licenses/>.
|
|
**
|
|
*************************************************************************/
|
|
|
|
#include "vtoolline.h"
|
|
|
|
#include <QKeyEvent>
|
|
#include <QLineF>
|
|
#include <QMessageLogger>
|
|
#include <QPen>
|
|
#include <QPointF>
|
|
#include <QSharedPointer>
|
|
#include <Qt>
|
|
#include <QtDebug>
|
|
#include <new>
|
|
|
|
#include "../../dialogs/tools/dialogline.h"
|
|
#include "../../dialogs/tools/dialogtool.h"
|
|
#include "../../visualization/visualization.h"
|
|
#include "../../visualization/line/vistoolline.h"
|
|
#include "../ifc/exception/vexception.h"
|
|
#include "../ifc/ifcdef.h"
|
|
#include "../vgeometry/vgobject.h"
|
|
#include "../vgeometry/vpointf.h"
|
|
#include "../vmisc/vabstractapplication.h"
|
|
#include "../vpatterndb/vcontainer.h"
|
|
#include "../vwidgets/vmaingraphicsscene.h"
|
|
#include "../vabstracttool.h"
|
|
#include "vdrawtool.h"
|
|
|
|
class QDomElement;
|
|
class QGraphicsSceneContextMenuEvent;
|
|
class QGraphicsSceneHoverEvent;
|
|
class QKeyEvent;
|
|
template <class T> class QSharedPointer;
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @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.
|
|
*/
|
|
VToolLine::VToolLine(VAbstractPattern *doc, VContainer *data, quint32 id, quint32 firstPoint, quint32 secondPoint,
|
|
const QString &typeLine, const QString &lineColor, const Source &typeCreation,
|
|
QGraphicsItem *parent)
|
|
:VDrawTool(doc, data, id), QGraphicsLineItem(parent), firstPoint(firstPoint), secondPoint(secondPoint),
|
|
lineColor(lineColor)
|
|
{
|
|
this->typeLine = typeLine;
|
|
//Line
|
|
const QSharedPointer<VPointF> first = data->GeometricObject<VPointF>(firstPoint);
|
|
const QSharedPointer<VPointF> second = data->GeometricObject<VPointF>(secondPoint);
|
|
this->setLine(QLineF(*first, *second));
|
|
this->setFlag(QGraphicsItem::ItemStacksBehindParent, true);
|
|
this->setFlag(QGraphicsItem::ItemIsFocusable, true);// For keyboard input focus
|
|
this->setAcceptHoverEvents(true);
|
|
this->setPen(QPen(CorrectColor(lineColor),
|
|
qApp->toPixel(WidthHairLine(*VAbstractTool::data.GetPatternUnit()))/factor,
|
|
LineStyleToPenStyle(typeLine)));
|
|
|
|
ToolCreation(typeCreation);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief setDialog set dialog when user want change tool option.
|
|
*/
|
|
void VToolLine::setDialog()
|
|
{
|
|
SCASSERT(dialog != nullptr);
|
|
DialogLine *dialogTool = qobject_cast<DialogLine*>(dialog);
|
|
SCASSERT(dialogTool != nullptr);
|
|
dialogTool->SetFirstPoint(firstPoint);
|
|
dialogTool->SetSecondPoint(secondPoint);
|
|
dialogTool->SetTypeLine(typeLine);
|
|
dialogTool->SetLineColor(lineColor);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @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.
|
|
*/
|
|
VToolLine *VToolLine::Create(DialogTool *dialog, VMainGraphicsScene *scene, VAbstractPattern *doc, VContainer *data)
|
|
{
|
|
SCASSERT(dialog != nullptr);
|
|
DialogLine *dialogTool = qobject_cast<DialogLine*>(dialog);
|
|
SCASSERT(dialogTool != nullptr);
|
|
const quint32 firstPoint = dialogTool->GetFirstPoint();
|
|
const quint32 secondPoint = dialogTool->GetSecondPoint();
|
|
const QString typeLine = dialogTool->GetTypeLine();
|
|
const QString lineColor = dialogTool->GetLineColor();
|
|
|
|
VToolLine *line = Create(0, firstPoint, secondPoint, typeLine, lineColor, scene, doc, data, Document::FullParse,
|
|
Source::FromGui);
|
|
if (line != nullptr)
|
|
{
|
|
line->dialog=dialogTool;
|
|
}
|
|
return line;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @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.
|
|
*/
|
|
VToolLine * VToolLine::Create(const quint32 &_id, const quint32 &firstPoint, const quint32 &secondPoint,
|
|
const QString &typeLine, const QString &lineColor, VMainGraphicsScene *scene,
|
|
VAbstractPattern *doc, VContainer *data, const Document &parse,
|
|
const Source &typeCreation)
|
|
{
|
|
SCASSERT(scene != nullptr);
|
|
SCASSERT(doc != nullptr);
|
|
SCASSERT(data != nullptr);
|
|
quint32 id = _id;
|
|
if (typeCreation == Source::FromGui)
|
|
{
|
|
id = data->getNextId();
|
|
data->AddLine(firstPoint, secondPoint);
|
|
}
|
|
else
|
|
{
|
|
data->UpdateId(id);
|
|
data->AddLine(firstPoint, secondPoint);
|
|
if (parse != Document::FullParse)
|
|
{
|
|
doc->UpdateToolData(id, data);
|
|
}
|
|
}
|
|
VDrawTool::AddRecord(id, Tool::Line, doc);
|
|
if (parse == Document::FullParse)
|
|
{
|
|
VToolLine *line = new VToolLine(doc, data, id, firstPoint, secondPoint, typeLine, lineColor, typeCreation);
|
|
scene->addItem(line);
|
|
InitDrawToolConnections(scene, line);
|
|
connect(scene, &VMainGraphicsScene::EnablePointItemSelection, line, &VToolLine::AllowSelecting);
|
|
connect(scene, &VMainGraphicsScene::EnableLineItemHover, line, &VToolLine::AllowHover);
|
|
doc->AddTool(id, line);
|
|
|
|
const QSharedPointer<VPointF> first = data->GeometricObject<VPointF>(firstPoint);
|
|
const QSharedPointer<VPointF> second = data->GeometricObject<VPointF>(secondPoint);
|
|
|
|
doc->IncrementReferens(first->getIdTool());
|
|
doc->IncrementReferens(second->getIdTool());
|
|
return line;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
QString VToolLine::getTagName() const
|
|
{
|
|
return VAbstractPattern::TagLine;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief FullUpdateFromFile update tool data form file.
|
|
*/
|
|
void VToolLine::FullUpdateFromFile()
|
|
{
|
|
ReadAttributes();
|
|
RefreshGeometry();
|
|
SetVisualization();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief ShowTool highlight tool.
|
|
* @param id object id in container
|
|
* @param enable enable or disable highlight.
|
|
*/
|
|
void VToolLine::ShowTool(quint32 id, bool enable)
|
|
{
|
|
ShowItem(this, id, enable);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief SetFactor set current scale factor of scene.
|
|
* @param factor scene scale factor.
|
|
*/
|
|
void VToolLine::SetFactor(qreal factor)
|
|
{
|
|
VDrawTool::SetFactor(factor);
|
|
RefreshGeometry();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolLine::Disable(bool disable, const QString &namePP)
|
|
{
|
|
enabled = !CorrectDisable(disable, namePP);
|
|
this->setEnabled(enabled);
|
|
this->setPen(QPen(CorrectColor(lineColor),
|
|
qApp->toPixel(WidthHairLine(*VAbstractTool::data.GetPatternUnit()))/factor,
|
|
LineStyleToPenStyle(typeLine)));
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolLine::AllowHover(bool enabled)
|
|
{
|
|
setAcceptHoverEvents(enabled);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolLine::AllowSelecting(bool enabled)
|
|
{
|
|
setFlag(QGraphicsItem::ItemIsSelectable, enabled);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief contextMenuEvent handle context menu events.
|
|
* @param event context menu event.
|
|
*/
|
|
void VToolLine::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
{
|
|
try
|
|
{
|
|
ContextMenu<DialogLine>(this, event);
|
|
}
|
|
catch(const VExceptionToolWasDeleted &e)
|
|
{
|
|
Q_UNUSED(e);
|
|
return;//Leave this method immediately!!!
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief AddToFile add tag with informations about tool into file.
|
|
*/
|
|
void VToolLine::AddToFile()
|
|
{
|
|
QDomElement domElement = doc->createElement(getTagName());
|
|
QSharedPointer<VGObject> obj = QSharedPointer<VGObject> ();
|
|
SaveOptions(domElement, obj);
|
|
AddToCalculation(domElement);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief RefreshDataInFile refresh attributes in file. If attributes don't exist create them.
|
|
*/
|
|
void VToolLine::RefreshDataInFile()
|
|
{
|
|
QDomElement domElement = doc->elementById(id);
|
|
if (domElement.isElement())
|
|
{
|
|
QSharedPointer<VGObject> obj = QSharedPointer<VGObject> ();
|
|
SaveOptions(domElement, obj);
|
|
}
|
|
else
|
|
{
|
|
qDebug()<<"Can't find tool with id ="<< id << Q_FUNC_INFO;
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief hoverEnterEvent handle hover enter events.
|
|
* @param event hover enter event.
|
|
*/
|
|
void VToolLine::hoverEnterEvent(QGraphicsSceneHoverEvent *event)
|
|
{
|
|
Q_UNUSED(event);
|
|
this->setPen(QPen(CorrectColor(lineColor),
|
|
qApp->toPixel(WidthMainLine(*VAbstractTool::data.GetPatternUnit()))/factor,
|
|
LineStyleToPenStyle(typeLine)));
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief hoverLeaveEvent handle hover leave events.
|
|
* @param event hover leave event.
|
|
*/
|
|
void VToolLine::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
|
|
{
|
|
Q_UNUSED(event);
|
|
if (vis == nullptr)
|
|
{
|
|
this->setPen(QPen(CorrectColor(lineColor),
|
|
qApp->toPixel(WidthHairLine(*VAbstractTool::data.GetPatternUnit()))/factor,
|
|
LineStyleToPenStyle(typeLine)));
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief RemoveReferens decrement value of reference.
|
|
*/
|
|
void VToolLine::RemoveReferens()
|
|
{
|
|
const auto p1 = VAbstractTool::data.GetGObject(firstPoint);
|
|
const auto p2 = VAbstractTool::data.GetGObject(secondPoint);
|
|
|
|
doc->DecrementReferens(p1->getIdTool());
|
|
doc->DecrementReferens(p2->getIdTool());
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief itemChange handle item change.
|
|
* @param change change.
|
|
* @param value value.
|
|
* @return value.
|
|
*/
|
|
QVariant VToolLine::itemChange(QGraphicsItem::GraphicsItemChange change, const QVariant &value)
|
|
{
|
|
if (change == QGraphicsItem::ItemSelectedChange)
|
|
{
|
|
emit ChangedToolSelection(value.toBool(), id, id);
|
|
}
|
|
|
|
return QGraphicsItem::itemChange(change, value);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief keyReleaseEvent handle key realse events.
|
|
* @param event key realse event.
|
|
*/
|
|
void VToolLine::keyReleaseEvent(QKeyEvent *event)
|
|
{
|
|
switch (event->key())
|
|
{
|
|
case Qt::Key_Delete:
|
|
try
|
|
{
|
|
DeleteTool();
|
|
}
|
|
catch(const VExceptionToolWasDeleted &e)
|
|
{
|
|
Q_UNUSED(e);
|
|
return;//Leave this method immediately!!!
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
QGraphicsItem::keyReleaseEvent ( event );
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief SaveDialog save options into file after change in dialog.
|
|
*/
|
|
void VToolLine::SaveDialog(QDomElement &domElement)
|
|
{
|
|
SCASSERT(dialog != nullptr);
|
|
DialogLine *dialogTool = qobject_cast<DialogLine*>(dialog);
|
|
SCASSERT(dialogTool != nullptr);
|
|
doc->SetAttribute(domElement, AttrFirstPoint, QString().setNum(dialogTool->GetFirstPoint()));
|
|
doc->SetAttribute(domElement, AttrSecondPoint, QString().setNum(dialogTool->GetSecondPoint()));
|
|
doc->SetAttribute(domElement, AttrTypeLine, dialogTool->GetTypeLine());
|
|
doc->SetAttribute(domElement, AttrLineColor, dialogTool->GetLineColor());
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolLine::SaveOptions(QDomElement &tag, QSharedPointer<VGObject> &obj)
|
|
{
|
|
VDrawTool::SaveOptions(tag, obj);
|
|
|
|
doc->SetAttribute(tag, AttrFirstPoint, firstPoint);
|
|
doc->SetAttribute(tag, AttrSecondPoint, secondPoint);
|
|
doc->SetAttribute(tag, AttrTypeLine, typeLine);
|
|
doc->SetAttribute(tag, AttrLineColor, lineColor);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
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);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolLine::SetVisualization()
|
|
{
|
|
if (vis != nullptr)
|
|
{
|
|
VisToolLine *visual = qobject_cast<VisToolLine *>(vis);
|
|
SCASSERT(visual != nullptr);
|
|
|
|
visual->setObject1Id(firstPoint);
|
|
visual->setPoint2Id(secondPoint);
|
|
visual->setLineStyle(VAbstractTool::LineStyleToPenStyle(typeLine));
|
|
visual->RefreshGeometry();
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
quint32 VToolLine::GetSecondPoint() const
|
|
{
|
|
return secondPoint;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolLine::SetSecondPoint(const quint32 &value)
|
|
{
|
|
if (value != NULL_ID)
|
|
{
|
|
secondPoint = value;
|
|
|
|
QSharedPointer<VGObject> obj;//We don't have object for line in data container. Just will send empty object.
|
|
SaveOption(obj);
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolLine::ShowVisualization(bool show)
|
|
{
|
|
if (show)
|
|
{
|
|
if (vis == nullptr)
|
|
{
|
|
AddVisualization<VisToolLine>();
|
|
SetVisualization();
|
|
}
|
|
else
|
|
{
|
|
if (VisToolLine *visual = qobject_cast<VisToolLine *>(vis))
|
|
{
|
|
visual->show();
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
delete vis;
|
|
vis = nullptr;
|
|
hoverLeaveEvent(nullptr);
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolLine::SetTypeLine(const QString &value)
|
|
{
|
|
typeLine = value;
|
|
|
|
QSharedPointer<VGObject> obj;//We don't have object for line in data container. Just will send empty object.
|
|
SaveOption(obj);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
QString VToolLine::GetLineColor() const
|
|
{
|
|
return lineColor;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
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);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolLine::GroupVisibility(quint32 object, bool visible)
|
|
{
|
|
Q_UNUSED(object);
|
|
setVisible(visible);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
quint32 VToolLine::GetFirstPoint() const
|
|
{
|
|
return firstPoint;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolLine::SetFirstPoint(const quint32 &value)
|
|
{
|
|
if (value != NULL_ID)
|
|
{
|
|
firstPoint = value;
|
|
|
|
QSharedPointer<VGObject> obj;//We don't have object for line in data container. Just will send empty object.
|
|
SaveOption(obj);
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief RefreshGeometry refresh item on scene.
|
|
*/
|
|
void VToolLine::RefreshGeometry()
|
|
{
|
|
const QSharedPointer<VPointF> first = VAbstractTool::data.GeometricObject<VPointF>(firstPoint);
|
|
const QSharedPointer<VPointF> second = VAbstractTool::data.GeometricObject<VPointF>(secondPoint);
|
|
this->setLine(QLineF(*first, *second));
|
|
this->setPen(QPen(CorrectColor(lineColor), pen().widthF(), LineStyleToPenStyle(typeLine)));
|
|
}
|