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 vtoolalongline.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-28 00:18:06 +02:00
|
|
|
#include "vtoolalongline.h"
|
2013-11-06 18:06:00 +01:00
|
|
|
#include "../../container/calculator.h"
|
2014-02-06 14:57:23 +01:00
|
|
|
#include "../../dialogs/dialogalongline.h"
|
2013-07-28 00:18:06 +02:00
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
const QString VToolAlongLine::ToolType = QStringLiteral("alongLine");
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
VToolAlongLine::VToolAlongLine(VDomDocument *doc, VContainer *data, qint64 id, const QString &formula,
|
2013-07-28 00:18:06 +02:00
|
|
|
const qint64 &firstPointId, const qint64 &secondPointId,
|
2013-11-06 22:11:12 +01:00
|
|
|
const QString &typeLine, const Tool::Sources &typeCreation,
|
2013-11-04 21:35:15 +01:00
|
|
|
QGraphicsItem *parent)
|
2014-02-06 14:57:23 +01:00
|
|
|
:VToolLinePoint(doc, data, id, typeLine, formula, firstPointId, 0, parent), secondPointId(secondPointId)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-07-28 00:18:06 +02:00
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
if (typeCreation == Tool::FromGui)
|
|
|
|
{
|
2013-07-31 13:34:39 +02:00
|
|
|
AddToFile();
|
2013-07-28 00:18:06 +02:00
|
|
|
}
|
2013-12-24 12:24:29 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
RefreshDataInFile();
|
|
|
|
}
|
2013-07-28 00:18:06 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolAlongLine::FullUpdateFromFile()
|
|
|
|
{
|
2013-07-28 00:18:06 +02:00
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
2013-11-04 21:35:15 +01:00
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
2013-10-29 14:45:07 +01:00
|
|
|
typeLine = domElement.attribute(AttrTypeLine, "");
|
|
|
|
formula = domElement.attribute(AttrLength, "");
|
|
|
|
basePointId = domElement.attribute(AttrFirstPoint, "").toLongLong();
|
|
|
|
secondPointId = domElement.attribute(AttrSecondPoint, "").toLongLong();
|
2013-07-28 00:18:06 +02:00
|
|
|
}
|
2013-07-31 13:34:39 +02:00
|
|
|
RefreshGeometry();
|
2013-07-30 20:46:40 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolAlongLine::SetFactor(qreal factor)
|
|
|
|
{
|
2013-10-16 11:17:34 +02:00
|
|
|
VDrawTool::SetFactor(factor);
|
|
|
|
RefreshGeometry();
|
|
|
|
}
|
|
|
|
|
2014-01-27 16:48:11 +01:00
|
|
|
//cppcheck-suppress unusedFunction
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolAlongLine::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
ContextMenu<DialogAlongLine>(this, event);
|
2013-07-28 00:18:06 +02:00
|
|
|
}
|
|
|
|
|
2014-01-09 13:51:09 +01:00
|
|
|
void VToolAlongLine::ShowContextMenu(QGraphicsSceneContextMenuEvent *event)
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
ContextMenu<DialogAlongLine>(this, event);
|
2014-01-09 13:51:09 +01:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolAlongLine::AddToFile()
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VPointF *point = VAbstractTool::data.GeometricObject<const VPointF *>(id);
|
2013-10-29 14:45:07 +01:00
|
|
|
QDomElement domElement = doc->createElement(TagName);
|
2013-07-28 00:18:06 +02:00
|
|
|
|
2014-01-20 15:00:38 +01:00
|
|
|
SetAttribute(domElement, AttrId, id);
|
|
|
|
SetAttribute(domElement, AttrType, ToolType);
|
|
|
|
SetAttribute(domElement, AttrName, point->name());
|
|
|
|
SetAttribute(domElement, AttrMx, toMM(point->mx()));
|
|
|
|
SetAttribute(domElement, AttrMy, toMM(point->my()));
|
2013-07-28 00:18:06 +02:00
|
|
|
|
2014-01-20 15:00:38 +01:00
|
|
|
SetAttribute(domElement, AttrTypeLine, typeLine);
|
|
|
|
SetAttribute(domElement, AttrLength, formula);
|
|
|
|
SetAttribute(domElement, AttrFirstPoint, basePointId);
|
|
|
|
SetAttribute(domElement, AttrSecondPoint, secondPointId);
|
2013-07-28 00:18:06 +02:00
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
AddToCalculation(domElement);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2013-12-24 12:24:29 +01:00
|
|
|
void VToolAlongLine::RefreshDataInFile()
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VPointF *point = VAbstractTool::data.GeometricObject<const VPointF *>(id);
|
2013-12-24 12:24:29 +01:00
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
2014-01-20 15:00:38 +01:00
|
|
|
SetAttribute(domElement, AttrMx, toMM(point->mx()));
|
|
|
|
SetAttribute(domElement, AttrMy, toMM(point->my()));
|
|
|
|
SetAttribute(domElement, AttrName, point->name());
|
|
|
|
SetAttribute(domElement, AttrTypeLine, typeLine);
|
|
|
|
SetAttribute(domElement, AttrLength, formula);
|
|
|
|
SetAttribute(domElement, AttrFirstPoint, basePointId);
|
|
|
|
SetAttribute(domElement, AttrSecondPoint, secondPointId);
|
2013-12-24 12:24:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolAlongLine::RemoveReferens()
|
|
|
|
{
|
2013-09-30 18:29:03 +02:00
|
|
|
doc->DecrementReferens(secondPointId);
|
|
|
|
VToolLinePoint::RemoveReferens();
|
|
|
|
}
|
|
|
|
|
2014-02-06 14:57:23 +01:00
|
|
|
void VToolAlongLine::SaveDialog(QDomElement &domElement)
|
|
|
|
{
|
|
|
|
Q_CHECK_PTR(dialog);
|
|
|
|
DialogAlongLine *dialogTool = qobject_cast<DialogAlongLine*>(dialog);
|
|
|
|
Q_CHECK_PTR(dialogTool);
|
|
|
|
SetAttribute(domElement, AttrName, dialogTool->getPointName());
|
|
|
|
SetAttribute(domElement, AttrTypeLine, dialogTool->getTypeLine());
|
|
|
|
SetAttribute(domElement, AttrLength, dialogTool->getFormula());
|
|
|
|
SetAttribute(domElement, AttrFirstPoint, dialogTool->getFirstPointId());
|
|
|
|
SetAttribute(domElement, AttrSecondPoint, dialogTool->getSecondPointId());
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolAlongLine::setDialog()
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
Q_CHECK_PTR(dialog);
|
|
|
|
DialogAlongLine *dialogTool = qobject_cast<DialogAlongLine*>(dialog);
|
|
|
|
Q_CHECK_PTR(dialogTool);
|
2013-12-29 17:48:57 +01:00
|
|
|
const VPointF *p = VAbstractTool::data.GeometricObject<const VPointF *>(id);
|
2014-02-06 14:57:23 +01:00
|
|
|
dialogTool->setTypeLine(typeLine);
|
|
|
|
dialogTool->setFormula(formula);
|
|
|
|
dialogTool->setFirstPointId(basePointId, id);
|
|
|
|
dialogTool->setSecondPointId(secondPointId, id);
|
|
|
|
dialogTool->setPointName(p->name());
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2014-02-06 14:57:23 +01:00
|
|
|
void VToolAlongLine::Create(DialogTool *dialog, VMainGraphicsScene *scene, VDomDocument *doc, VContainer *data)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
Q_CHECK_PTR(dialog);
|
|
|
|
DialogAlongLine *dialogTool = qobject_cast<DialogAlongLine*>(dialog);
|
|
|
|
Q_CHECK_PTR(dialogTool);
|
|
|
|
QString formula = dialogTool->getFormula();
|
|
|
|
qint64 firstPointId = dialogTool->getFirstPointId();
|
|
|
|
qint64 secondPointId = dialogTool->getSecondPointId();
|
|
|
|
QString typeLine = dialogTool->getTypeLine();
|
|
|
|
QString pointName = dialogTool->getPointName();
|
2013-08-13 18:48:36 +02:00
|
|
|
Create(0, pointName, typeLine, formula, firstPointId, secondPointId, 5, 10, scene, doc, data,
|
2013-09-10 14:29:06 +02:00
|
|
|
Document::FullParse, Tool::FromGui);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void VToolAlongLine::Create(const qint64 _id, const QString &pointName, const QString &typeLine,
|
|
|
|
const QString &formula, const qint64 &firstPointId, const qint64 &secondPointId,
|
|
|
|
const qreal &mx, const qreal &my, VMainGraphicsScene *scene, VDomDocument *doc,
|
2013-11-06 22:11:12 +01:00
|
|
|
VContainer *data, const Document::Documents &parse, const Tool::Sources &typeCreation)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VPointF *firstPoint = data->GeometricObject<const VPointF *>(firstPointId);
|
|
|
|
const VPointF *secondPoint = data->GeometricObject<const VPointF *>(secondPointId);
|
|
|
|
QLineF line = QLineF(firstPoint->toQPointF(), secondPoint->toQPointF());
|
2013-08-13 18:48:36 +02:00
|
|
|
Calculator cal(data);
|
|
|
|
QString errorMsg;
|
|
|
|
qreal result = cal.eval(formula, &errorMsg);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (errorMsg.isEmpty())
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
line.setLength(toPixel(result));
|
2013-08-13 18:48:36 +02:00
|
|
|
qint64 id = _id;
|
2013-11-04 21:35:15 +01:00
|
|
|
if (typeCreation == Tool::FromGui)
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
id = data->AddGObject( new VPointF(line.p2().x(), line.p2().y(), pointName, mx, my));
|
2013-10-10 20:45:58 +02:00
|
|
|
data->AddLine(firstPointId, id);
|
|
|
|
data->AddLine(id, secondPointId);
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
data->UpdateGObject(id, new VPointF(line.p2().x(), line.p2().y(), pointName, mx, my));
|
2013-10-10 20:45:58 +02:00
|
|
|
data->AddLine(firstPointId, id);
|
|
|
|
data->AddLine(id, secondPointId);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (parse != Document::FullParse)
|
|
|
|
{
|
2013-09-30 18:29:03 +02:00
|
|
|
doc->UpdateToolData(id, data);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
}
|
2013-09-27 11:17:00 +02:00
|
|
|
VDrawTool::AddRecord(id, Tool::AlongLineTool, doc);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (parse == Document::FullParse)
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
VToolAlongLine *point = new VToolAlongLine(doc, data, id, formula, firstPointId,
|
2013-08-13 18:48:36 +02:00
|
|
|
secondPointId, typeLine, typeCreation);
|
|
|
|
scene->addItem(point);
|
|
|
|
connect(point, &VToolAlongLine::ChoosedTool, scene, &VMainGraphicsScene::ChoosedItem);
|
2013-10-16 11:17:34 +02:00
|
|
|
connect(scene, &VMainGraphicsScene::NewFactor, point, &VToolAlongLine::SetFactor);
|
2013-09-30 18:29:03 +02:00
|
|
|
doc->AddTool(id, point);
|
|
|
|
doc->IncrementReferens(firstPointId);
|
|
|
|
doc->IncrementReferens(secondPointId);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
}
|
2013-07-28 00:18:06 +02:00
|
|
|
}
|