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
|
2013-11-15 13:41:26 +01:00
|
|
|
** @author Roman Telezhinsky <dismine@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.
|
|
|
|
** Copyright (C) 2013 Valentina project
|
|
|
|
** <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"
|
2013-07-25 20:39:51 +02:00
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
const QString VToolLine::TagName = QStringLiteral("line");
|
|
|
|
|
2014-02-25 15:40:24 +01:00
|
|
|
VToolLine::VToolLine(VPattern *doc, VContainer *data, quint32 id, quint32 firstPoint, quint32 secondPoint,
|
2014-03-11 12:43:24 +01:00
|
|
|
const QString &typeLine, const Valentina::Sources &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;
|
2013-10-21 16:09:05 +02:00
|
|
|
ignoreFullUpdate = true;
|
2013-12-29 17:48:57 +01:00
|
|
|
//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);
|
2014-01-03 16:13:43 +01:00
|
|
|
this->setFlag(QGraphicsItem::ItemIsFocusable, true);
|
2013-07-28 00:18:06 +02:00
|
|
|
this->setAcceptHoverEvents(true);
|
2014-03-26 05:39:07 +01:00
|
|
|
this->setPen(QPen(Qt::black, qApp->toPixel(qApp->widthHairLine())/factor, LineStyle()));
|
2013-07-25 20:39:51 +02:00
|
|
|
|
2014-03-11 12:43:24 +01:00
|
|
|
if (typeCreation == Valentina::FromGui)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-07-25 20:39:51 +02:00
|
|
|
AddToFile();
|
|
|
|
}
|
2013-12-24 12:24:29 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
RefreshDataInFile();
|
|
|
|
}
|
2013-07-25 20:39:51 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolLine::setDialog()
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
Q_CHECK_PTR(dialog);
|
|
|
|
DialogLine *dialogTool = qobject_cast<DialogLine*>(dialog);
|
|
|
|
Q_CHECK_PTR(dialogTool);
|
|
|
|
dialogTool->setFirstPoint(firstPoint);
|
|
|
|
dialogTool->setSecondPoint(secondPoint);
|
2014-02-12 11:55:24 +01:00
|
|
|
dialogTool->setTypeLine(typeLine);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2014-02-25 15:02:09 +01:00
|
|
|
void VToolLine::Create(DialogTool *dialog, VMainGraphicsScene *scene, VPattern *doc, VContainer *data)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
Q_CHECK_PTR(dialog);
|
|
|
|
DialogLine *dialogTool = qobject_cast<DialogLine*>(dialog);
|
|
|
|
Q_CHECK_PTR(dialogTool);
|
2014-02-25 15:40:24 +01:00
|
|
|
quint32 firstPoint = dialogTool->getFirstPoint();
|
|
|
|
quint32 secondPoint = dialogTool->getSecondPoint();
|
2014-02-12 11:55:24 +01:00
|
|
|
QString typeLine = dialogTool->getTypeLine();
|
2014-03-11 12:43:24 +01:00
|
|
|
Create(0, firstPoint, secondPoint, typeLine, scene, doc, data, Document::FullParse, Valentina::FromGui);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2014-02-26 10:51:37 +01:00
|
|
|
void VToolLine::Create(const quint32 &_id, const quint32 &firstPoint, const quint32 &secondPoint,
|
|
|
|
const QString &typeLine, VMainGraphicsScene *scene, VPattern *doc, VContainer *data,
|
2014-03-11 12:43:24 +01:00
|
|
|
const Document::Documents &parse, const Valentina::Sources &typeCreation)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-01-30 14:47:41 +01:00
|
|
|
Q_CHECK_PTR(scene);
|
|
|
|
Q_CHECK_PTR(doc);
|
|
|
|
Q_CHECK_PTR(data);
|
2014-02-25 15:40:24 +01:00
|
|
|
quint32 id = _id;
|
2014-03-11 12:43:24 +01:00
|
|
|
if (typeCreation == Valentina::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-03-11 12:43:24 +01:00
|
|
|
VDrawTool::AddRecord(id, Valentina::LineTool, doc);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (parse == Document::FullParse)
|
|
|
|
{
|
2014-02-12 11:55:24 +01:00
|
|
|
VToolLine *line = new VToolLine(doc, data, id, firstPoint, secondPoint, typeLine, 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);
|
2013-09-30 18:29:03 +02:00
|
|
|
doc->AddTool(id, line);
|
|
|
|
doc->IncrementReferens(firstPoint);
|
|
|
|
doc->IncrementReferens(secondPoint);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolLine::FullUpdateFromFile()
|
|
|
|
{
|
2013-10-16 11:17:34 +02:00
|
|
|
RefreshGeometry();
|
2013-07-25 20:39:51 +02:00
|
|
|
}
|
|
|
|
|
2014-02-25 15:40:24 +01:00
|
|
|
void VToolLine::ShowTool(quint32 id, Qt::GlobalColor color, bool enable)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-10-28 16:45:27 +01:00
|
|
|
ShowItem(this, id, color, enable);
|
2013-08-15 22:39:00 +02:00
|
|
|
}
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2013-11-06 22:11:12 +01:00
|
|
|
void VToolLine::ChangedActivDraw(const QString &newName)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-10-28 16:45:27 +01:00
|
|
|
bool selectable = false;
|
2013-11-04 21:35:15 +01:00
|
|
|
if (nameActivDraw == newName)
|
|
|
|
{
|
2013-10-28 16:45:27 +01:00
|
|
|
selectable = true;
|
2013-10-16 11:17:34 +02:00
|
|
|
currentColor = Qt::black;
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-10-28 16:45:27 +01:00
|
|
|
selectable = false;
|
2013-10-16 11:17:34 +02:00
|
|
|
currentColor = Qt::gray;
|
2013-07-25 20:39:51 +02:00
|
|
|
}
|
2014-03-26 05:39:07 +01:00
|
|
|
this->setPen(QPen(currentColor, qApp->toPixel(qApp->widthHairLine())/factor, LineStyle()));
|
2013-10-28 16:45:27 +01:00
|
|
|
this->setAcceptHoverEvents (selectable);
|
|
|
|
VDrawTool::ChangedActivDraw(newName);
|
2013-07-25 20:39:51 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolLine::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
ContextMenu<DialogLine>(this, event);
|
2013-07-25 20:39:51 +02:00
|
|
|
}
|
|
|
|
|
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-03-21 11:08:29 +01:00
|
|
|
doc->SetAttribute(domElement, VDomDocument::AttrId, id);
|
2014-02-25 15:02:09 +01:00
|
|
|
doc->SetAttribute(domElement, AttrFirstPoint, firstPoint);
|
|
|
|
doc->SetAttribute(domElement, AttrSecondPoint, secondPoint);
|
|
|
|
doc->SetAttribute(domElement, AttrTypeLine, typeLine);
|
2013-07-25 20:39:51 +02:00
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
AddToCalculation(domElement);
|
2013-07-25 20:39:51 +02:00
|
|
|
}
|
|
|
|
|
2013-12-24 12:24:29 +01:00
|
|
|
void VToolLine::RefreshDataInFile()
|
|
|
|
{
|
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
2014-02-25 15:02:09 +01:00
|
|
|
doc->SetAttribute(domElement, AttrFirstPoint, firstPoint);
|
|
|
|
doc->SetAttribute(domElement, AttrSecondPoint, secondPoint);
|
|
|
|
doc->SetAttribute(domElement, AttrTypeLine, typeLine);
|
2013-12-24 12:24:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolLine::hoverMoveEvent(QGraphicsSceneHoverEvent *event)
|
|
|
|
{
|
2013-07-28 00:18:06 +02:00
|
|
|
Q_UNUSED(event);
|
2014-03-26 05:39:07 +01:00
|
|
|
this->setPen(QPen(currentColor, qApp->toPixel(qApp->widthMainLine())/factor, LineStyle()));
|
2013-07-28 00:18:06 +02:00
|
|
|
}
|
2013-07-25 20:39:51 +02:00
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolLine::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
|
|
|
|
{
|
2013-07-28 00:18:06 +02:00
|
|
|
Q_UNUSED(event);
|
2014-03-26 05:39:07 +01:00
|
|
|
this->setPen(QPen(currentColor, qApp->toPixel(qApp->widthHairLine())/factor, LineStyle()));
|
2013-07-25 20:39:51 +02:00
|
|
|
}
|
2013-07-28 00:18:06 +02:00
|
|
|
|
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-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);
|
|
|
|
}
|
|
|
|
|
|
|
|
void VToolLine::keyReleaseEvent(QKeyEvent *event)
|
|
|
|
{
|
|
|
|
switch (event->key())
|
|
|
|
{
|
|
|
|
case Qt::Key_Delete:
|
|
|
|
DeleteTool(this);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
QGraphicsItem::keyReleaseEvent ( event );
|
|
|
|
}
|
|
|
|
|
2014-02-06 14:57:23 +01:00
|
|
|
void VToolLine::SaveDialog(QDomElement &domElement)
|
|
|
|
{
|
|
|
|
Q_CHECK_PTR(dialog);
|
|
|
|
DialogLine *dialogTool = qobject_cast<DialogLine*>(dialog);
|
|
|
|
Q_CHECK_PTR(dialogTool);
|
2014-02-25 15:02:09 +01:00
|
|
|
doc->SetAttribute(domElement, AttrFirstPoint, QString().setNum(dialogTool->getFirstPoint()));
|
|
|
|
doc->SetAttribute(domElement, AttrSecondPoint, QString().setNum(dialogTool->getSecondPoint()));
|
|
|
|
doc->SetAttribute(domElement, AttrTypeLine, dialogTool->getTypeLine());
|
2014-02-06 14:57:23 +01:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolLine::RefreshGeometry()
|
|
|
|
{
|
2013-10-16 11:17:34 +02:00
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
2013-11-04 21:35:15 +01:00
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
2014-02-25 15:40:24 +01:00
|
|
|
firstPoint = doc->GetParametrUInt(domElement, VAbstractTool::AttrFirstPoint, "0");
|
|
|
|
secondPoint = doc->GetParametrUInt(domElement, VAbstractTool::AttrSecondPoint, "0");
|
2014-02-12 11:55:24 +01:00
|
|
|
typeLine = doc->GetParametrString(domElement, VAbstractTool::AttrTypeLine, VAbstractTool::TypeLineLine);
|
2013-10-16 11:17:34 +02:00
|
|
|
}
|
2013-12-29 17:48:57 +01:00
|
|
|
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()));
|
2014-03-26 05:39:07 +01:00
|
|
|
this->setPen(QPen(currentColor, qApp->toPixel(qApp->widthHairLine())/factor, LineStyle()));
|
2013-10-16 11:17:34 +02:00
|
|
|
}
|