valentina/src/tools/drawTools/vtoolline.cpp

246 lines
7.5 KiB
C++
Raw Normal View History

/************************************************************************
**
** @file vtoolline.cpp
** @author Roman Telezhinsky <dismine@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 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/>.
**
*************************************************************************/
2013-07-25 20:39:51 +02:00
#include "vtoolline.h"
const QString VToolLine::TagName = QStringLiteral("line");
VToolLine::VToolLine(VDomDocument *doc, VContainer *data, qint64 id, qint64 firstPoint, qint64 secondPoint,
const Tool::Sources &typeCreation, QGraphicsItem *parent)
:VDrawTool(doc, data, id), QGraphicsLineItem(parent), firstPoint(firstPoint), secondPoint(secondPoint),
dialogLine(QSharedPointer<DialogLine>())
{
ignoreFullUpdate = true;
//Line
const VPointF *first = data->GeometricObject<const VPointF *>(firstPoint);
const VPointF *second = data->GeometricObject<const VPointF *>(secondPoint);
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);
this->setFlag(QGraphicsItem::ItemIsFocusable, true);
2013-07-28 00:18:06 +02:00
this->setAcceptHoverEvents(true);
this->setPen(QPen(Qt::black, widthHairLine/factor));
2013-07-25 20:39:51 +02:00
if (typeCreation == Tool::FromGui)
{
2013-07-25 20:39:51 +02:00
AddToFile();
}
else
{
RefreshDataInFile();
}
2013-07-25 20:39:51 +02:00
}
void VToolLine::setDialog()
{
dialogLine->setFirstPoint(firstPoint);
dialogLine->setSecondPoint(secondPoint);
}
void VToolLine::Create(QSharedPointer<DialogLine> &dialog, VMainGraphicsScene *scene, VDomDocument *doc,
VContainer *data)
{
qint64 firstPoint = dialog->getFirstPoint();
qint64 secondPoint = dialog->getSecondPoint();
Create(0, firstPoint, secondPoint, scene, doc, data, Document::FullParse, Tool::FromGui);
}
void VToolLine::Create(const qint64 &_id, const qint64 &firstPoint, const qint64 &secondPoint,
VMainGraphicsScene *scene, VDomDocument *doc, VContainer *data,
const Document::Documents &parse, const Tool::Sources &typeCreation)
{
Q_CHECK_PTR(scene);
Q_CHECK_PTR(doc);
Q_CHECK_PTR(data);
qint64 id = _id;
if (typeCreation == Tool::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::LineTool, doc);
if (parse == Document::FullParse)
{
VToolLine *line = new VToolLine(doc, data, id, firstPoint, secondPoint, typeCreation);
Q_CHECK_PTR(line);
scene->addItem(line);
connect(line, &VToolLine::ChoosedTool, scene, &VMainGraphicsScene::ChoosedItem);
connect(scene, &VMainGraphicsScene::NewFactor, line, &VToolLine::SetFactor);
doc->AddTool(id, line);
doc->IncrementReferens(firstPoint);
doc->IncrementReferens(secondPoint);
}
}
void VToolLine::FullUpdateFromFile()
{
RefreshGeometry();
2013-07-25 20:39:51 +02:00
}
void VToolLine::FullUpdateFromGui(int result)
{
if (result == QDialog::Accepted)
{
2013-07-28 00:18:06 +02:00
QDomElement domElement = doc->elementById(QString().setNum(id));
if (domElement.isElement())
{
2014-01-20 15:00:38 +01:00
SetAttribute(domElement, AttrFirstPoint, QString().setNum(dialogLine->getFirstPoint()));
SetAttribute(domElement, AttrSecondPoint, QString().setNum(dialogLine->getSecondPoint()));
2013-07-28 00:18:06 +02:00
emit FullUpdateTree();
emit toolhaveChange();
2013-07-28 00:18:06 +02:00
}
2013-07-25 20:39:51 +02:00
}
dialogLine.clear();
}
void VToolLine::ShowTool(qint64 id, Qt::GlobalColor color, bool enable)
{
2013-10-28 16:45:27 +01:00
ShowItem(this, id, color, enable);
2013-08-15 22:39:00 +02:00
}
void VToolLine::SetFactor(qreal factor)
{
VDrawTool::SetFactor(factor);
RefreshGeometry();
}
void VToolLine::ChangedActivDraw(const QString &newName)
{
2013-10-28 16:45:27 +01:00
bool selectable = false;
if (nameActivDraw == newName)
{
2013-10-28 16:45:27 +01:00
selectable = true;
currentColor = Qt::black;
}
else
{
2013-10-28 16:45:27 +01:00
selectable = false;
currentColor = Qt::gray;
2013-07-25 20:39:51 +02:00
}
2013-10-28 16:45:27 +01:00
this->setPen(QPen(currentColor, widthHairLine/factor));
this->setAcceptHoverEvents (selectable);
VDrawTool::ChangedActivDraw(newName);
2013-07-25 20:39:51 +02:00
}
void VToolLine::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
{
ContextMenu(dialogLine, this, event);
2013-07-25 20:39:51 +02:00
}
void VToolLine::AddToFile()
{
QDomElement domElement = doc->createElement(TagName);
2014-01-20 15:00:38 +01:00
SetAttribute(domElement, AttrId, id);
SetAttribute(domElement, AttrFirstPoint, firstPoint);
SetAttribute(domElement, AttrSecondPoint, secondPoint);
2013-07-25 20:39:51 +02:00
AddToCalculation(domElement);
2013-07-25 20:39:51 +02:00
}
void VToolLine::RefreshDataInFile()
{
QDomElement domElement = doc->elementById(QString().setNum(id));
if (domElement.isElement())
{
2014-01-20 15:00:38 +01:00
SetAttribute(domElement, AttrFirstPoint, firstPoint);
SetAttribute(domElement, AttrSecondPoint, secondPoint);
}
}
void VToolLine::hoverMoveEvent(QGraphicsSceneHoverEvent *event)
{
2013-07-28 00:18:06 +02:00
Q_UNUSED(event);
this->setPen(QPen(currentColor, widthMainLine/factor));
2013-07-28 00:18:06 +02:00
}
2013-07-25 20:39:51 +02:00
void VToolLine::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
{
2013-07-28 00:18:06 +02:00
Q_UNUSED(event);
this->setPen(QPen(currentColor, widthHairLine/factor));
2013-07-25 20:39:51 +02:00
}
2013-07-28 00:18:06 +02:00
void VToolLine::RemoveReferens()
{
doc->DecrementReferens(firstPoint);
doc->DecrementReferens(secondPoint);
}
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);
}
void VToolLine::keyReleaseEvent(QKeyEvent *event)
{
switch (event->key())
{
case Qt::Key_Delete:
DeleteTool(this);
break;
default:
break;
}
QGraphicsItem::keyReleaseEvent ( event );
}
void VToolLine::RefreshGeometry()
{
QDomElement domElement = doc->elementById(QString().setNum(id));
if (domElement.isElement())
{
firstPoint = domElement.attribute(AttrFirstPoint, "").toLongLong();
secondPoint = domElement.attribute(AttrSecondPoint, "").toLongLong();
}
const VPointF *first = VAbstractTool::data.GeometricObject<const VPointF *>(firstPoint);
const VPointF *second = VAbstractTool::data.GeometricObject<const VPointF *>(secondPoint);
this->setLine(QLineF(first->toQPointF(), second->toQPointF()));
this->setPen(QPen(currentColor, widthHairLine/factor));
}