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 vmodelingbisector.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-09-10 14:29:06 +02:00
|
|
|
#include "vmodelingbisector.h"
|
2013-10-18 12:43:51 +02:00
|
|
|
#include "../drawTools/vtoolbisector.h"
|
2013-11-06 16:49:07 +01:00
|
|
|
#include "../../container/calculator.h"
|
2013-07-30 20:46:40 +02:00
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
const QString VModelingBisector::ToolType = QStringLiteral("bisector");
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
VModelingBisector::VModelingBisector(VDomDocument *doc, VContainer *data, const qint64 &id,
|
2013-08-28 10:55:11 +02:00
|
|
|
const QString &typeLine, const QString &formula, const qint64 &firstPointId,
|
2013-11-06 22:11:12 +01:00
|
|
|
const qint64 &secondPointId, const qint64 &thirdPointId, const Tool::Sources &typeCreation,
|
2013-11-04 21:35:15 +01:00
|
|
|
QGraphicsItem *parent)
|
|
|
|
:VModelingLinePoint(doc, data, id, typeLine, formula, secondPointId, 0, parent), firstPointId(0),
|
|
|
|
thirdPointId(0), dialogBisector(QSharedPointer<DialogBisector>())
|
|
|
|
{
|
2013-07-30 20:46:40 +02:00
|
|
|
this->firstPointId = firstPointId;
|
|
|
|
this->thirdPointId = thirdPointId;
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
if (typeCreation == Tool::FromGui)
|
|
|
|
{
|
2013-07-30 20:46:40 +02:00
|
|
|
AddToFile();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VModelingBisector::setDialog()
|
|
|
|
{
|
|
|
|
Q_ASSERT(dialogBisector.isNull() == false);
|
|
|
|
VPointF p = VAbstractTool::data.GetModelingPoint(id);
|
|
|
|
dialogBisector->setTypeLine(typeLine);
|
|
|
|
dialogBisector->setFormula(formula);
|
|
|
|
dialogBisector->setFirstPointId(firstPointId, id);
|
|
|
|
dialogBisector->setSecondPointId(basePointId, id);
|
|
|
|
dialogBisector->setThirdPointId(thirdPointId, id);
|
|
|
|
dialogBisector->setPointName(p.name());
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
VModelingBisector *VModelingBisector::Create(QSharedPointer<DialogBisector> &dialog, VDomDocument *doc,
|
2013-11-04 21:35:15 +01:00
|
|
|
VContainer *data)
|
|
|
|
{
|
2013-08-13 18:48:36 +02:00
|
|
|
QString formula = dialog->getFormula();
|
|
|
|
qint64 firstPointId = dialog->getFirstPointId();
|
|
|
|
qint64 secondPointId = dialog->getSecondPointId();
|
|
|
|
qint64 thirdPointId = dialog->getThirdPointId();
|
|
|
|
QString typeLine = dialog->getTypeLine();
|
|
|
|
QString pointName = dialog->getPointName();
|
2013-09-10 14:29:06 +02:00
|
|
|
return Create(0, formula, firstPointId, secondPointId, thirdPointId, typeLine, pointName, 5, 10, doc,
|
|
|
|
data, Document::FullParse, Tool::FromGui);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
VModelingBisector *VModelingBisector::Create(const qint64 _id, const QString &formula,
|
|
|
|
const qint64 &firstPointId, const qint64 &secondPointId,
|
|
|
|
const qint64 &thirdPointId, const QString &typeLine,
|
|
|
|
const QString &pointName, const qreal &mx, const qreal &my,
|
2013-09-27 11:17:00 +02:00
|
|
|
VDomDocument *doc, VContainer *data, const Document::Documents &parse,
|
2013-11-06 22:11:12 +01:00
|
|
|
const Tool::Sources &typeCreation)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
VModelingBisector *point = 0;
|
|
|
|
VPointF firstPoint = data->GetModelingPoint(firstPointId);
|
|
|
|
VPointF secondPoint = data->GetModelingPoint(secondPointId);
|
|
|
|
VPointF thirdPoint = data->GetModelingPoint(thirdPointId);
|
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-10-18 12:43:51 +02:00
|
|
|
QPointF fPoint = VToolBisector::FindPoint(firstPoint.toQPointF(), secondPoint.toQPointF(),
|
2013-10-28 18:27:31 +01:00
|
|
|
thirdPoint.toQPointF(), 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-09-10 14:29:06 +02:00
|
|
|
id = data->AddModelingPoint(VPointF(fPoint.x(), fPoint.y(), pointName, mx, my));
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
data->UpdateModelingPoint(id, VPointF(fPoint.x(), fPoint.y(), pointName, mx, my));
|
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-10 14:29:06 +02:00
|
|
|
data->AddLine(firstPointId, id, Draw::Modeling);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (parse == Document::FullParse)
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
point = new VModelingBisector(doc, data, id, typeLine, formula, firstPointId, secondPointId,
|
|
|
|
thirdPointId, typeCreation);
|
2013-09-30 18:29:03 +02:00
|
|
|
doc->AddTool(id, point);
|
|
|
|
doc->IncrementReferens(firstPointId);
|
|
|
|
doc->IncrementReferens(secondPointId);
|
|
|
|
doc->IncrementReferens(thirdPointId);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
}
|
2013-09-10 14:29:06 +02:00
|
|
|
return point;
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VModelingBisector::FullUpdateFromFile()
|
|
|
|
{
|
2013-07-30 20:46:40 +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, "");
|
|
|
|
firstPointId = domElement.attribute(AttrFirstPoint, "").toLongLong();
|
|
|
|
basePointId = domElement.attribute(AttrSecondPoint, "").toLongLong();
|
|
|
|
thirdPointId = domElement.attribute(AttrThirdPoint, "").toLongLong();
|
2013-07-30 20:46:40 +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 VModelingBisector::FullUpdateFromGui(int result)
|
|
|
|
{
|
|
|
|
if (result == QDialog::Accepted)
|
|
|
|
{
|
2013-07-30 20:46:40 +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
|
|
|
domElement.setAttribute(AttrName, dialogBisector->getPointName());
|
|
|
|
domElement.setAttribute(AttrTypeLine, dialogBisector->getTypeLine());
|
|
|
|
domElement.setAttribute(AttrLength, dialogBisector->getFormula());
|
|
|
|
domElement.setAttribute(AttrFirstPoint, QString().setNum(dialogBisector->getFirstPointId()));
|
|
|
|
domElement.setAttribute(AttrSecondPoint, QString().setNum(dialogBisector->getSecondPointId()));
|
|
|
|
domElement.setAttribute(AttrThirdPoint, QString().setNum(dialogBisector->getThirdPointId()));
|
2013-07-30 20:46:40 +02:00
|
|
|
emit FullUpdateTree();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dialogBisector.clear();
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VModelingBisector::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
|
|
{
|
2013-08-13 18:48:36 +02:00
|
|
|
ContextMenu(dialogBisector, this, event);
|
2013-07-30 20:46:40 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VModelingBisector::AddToFile()
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
VPointF point = VAbstractTool::data.GetModelingPoint(id);
|
2013-10-29 14:45:07 +01:00
|
|
|
QDomElement domElement = doc->createElement(TagName);
|
|
|
|
|
|
|
|
AddAttribute(domElement, AttrId, id);
|
|
|
|
AddAttribute(domElement, AttrType, ToolType);
|
|
|
|
AddAttribute(domElement, AttrName, point.name());
|
|
|
|
AddAttribute(domElement, AttrMx, toMM(point.mx()));
|
|
|
|
AddAttribute(domElement, AttrMy, toMM(point.my()));
|
|
|
|
|
|
|
|
AddAttribute(domElement, AttrTypeLine, typeLine);
|
|
|
|
AddAttribute(domElement, AttrLength, formula);
|
|
|
|
AddAttribute(domElement, AttrFirstPoint, firstPointId);
|
|
|
|
AddAttribute(domElement, AttrSecondPoint, basePointId);
|
|
|
|
AddAttribute(domElement, AttrThirdPoint, thirdPointId);
|
2013-07-30 20:46:40 +02:00
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
AddToModeling(domElement);
|
2013-07-30 20:46:40 +02:00
|
|
|
}
|
2013-09-30 18:29:03 +02:00
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VModelingBisector::RemoveReferens()
|
|
|
|
{
|
2013-09-30 18:29:03 +02:00
|
|
|
doc->DecrementReferens(firstPointId);
|
|
|
|
doc->DecrementReferens(thirdPointId);
|
|
|
|
VModelingLinePoint::RemoveReferens();
|
|
|
|
}
|