b2d26e5ae8
--HG-- branch : feature
221 lines
8.7 KiB
C++
221 lines
8.7 KiB
C++
/************************************************************************
|
|
**
|
|
** @file vtoolnormal.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/>.
|
|
**
|
|
*************************************************************************/
|
|
|
|
#include "vtoolnormal.h"
|
|
#include "../../container/calculator.h"
|
|
#include "../../dialogs/tools/dialognormal.h"
|
|
|
|
const QString VToolNormal::ToolType = QStringLiteral("normal");
|
|
|
|
VToolNormal::VToolNormal(VPattern *doc, VContainer *data, const quint32 &id, const QString &typeLine,
|
|
const QString &formula, const qreal &angle, const quint32 &firstPointId,
|
|
const quint32 &secondPointId, const Valentina::Sources &typeCreation, QGraphicsItem *parent)
|
|
:VToolLinePoint(doc, data, id, typeLine, formula, firstPointId, angle, parent),
|
|
secondPointId(secondPointId)
|
|
{
|
|
|
|
if (typeCreation == Valentina::FromGui)
|
|
{
|
|
AddToFile();
|
|
}
|
|
else
|
|
{
|
|
RefreshDataInFile();
|
|
}
|
|
}
|
|
|
|
void VToolNormal::setDialog()
|
|
{
|
|
Q_CHECK_PTR(dialog);
|
|
DialogNormal *dialogTool = qobject_cast<DialogNormal*>(dialog);
|
|
Q_CHECK_PTR(dialogTool);
|
|
const VPointF *p = VAbstractTool::data.GeometricObject<const VPointF *>(id);
|
|
dialogTool->setTypeLine(typeLine);
|
|
dialogTool->setFormula(formula);
|
|
dialogTool->setAngle(angle);
|
|
dialogTool->setFirstPointId(basePointId, id);
|
|
dialogTool->setSecondPointId(secondPointId, id);
|
|
dialogTool->setPointName(p->name());
|
|
}
|
|
|
|
void VToolNormal::Create(DialogTool *dialog, VMainGraphicsScene *scene, VPattern *doc, VContainer *data)
|
|
{
|
|
Q_CHECK_PTR(dialog);
|
|
DialogNormal *dialogTool = qobject_cast<DialogNormal*>(dialog);
|
|
Q_CHECK_PTR(dialogTool);
|
|
QString formula = dialogTool->getFormula();
|
|
quint32 firstPointId = dialogTool->getFirstPointId();
|
|
quint32 secondPointId = dialogTool->getSecondPointId();
|
|
QString typeLine = dialogTool->getTypeLine();
|
|
QString pointName = dialogTool->getPointName();
|
|
qreal angle = dialogTool->getAngle();
|
|
Create(0, formula, firstPointId, secondPointId, typeLine, pointName, angle, 5, 10, scene, doc, data,
|
|
Document::FullParse, Valentina::FromGui);
|
|
}
|
|
|
|
void VToolNormal::Create(const quint32 _id, const QString &formula, const quint32 &firstPointId,
|
|
const quint32 &secondPointId, const QString &typeLine, const QString &pointName,
|
|
const qreal angle, const qreal &mx, const qreal &my, VMainGraphicsScene *scene,
|
|
VPattern *doc, VContainer *data, const Document::Documents &parse,
|
|
const Valentina::Sources &typeCreation)
|
|
{
|
|
const VPointF *firstPoint = data->GeometricObject<const VPointF *>(firstPointId);
|
|
const VPointF *secondPoint = data->GeometricObject<const VPointF *>(secondPointId);
|
|
Calculator cal(data);
|
|
QString errorMsg;
|
|
qreal result = cal.eval(formula, &errorMsg);
|
|
if (errorMsg.isEmpty())
|
|
{
|
|
QPointF fPoint = VToolNormal::FindPoint(firstPoint->toQPointF(), secondPoint->toQPointF(),
|
|
toPixel(result), angle);
|
|
quint32 id = _id;
|
|
if (typeCreation == Valentina::FromGui)
|
|
{
|
|
id = data->AddGObject(new VPointF(fPoint.x(), fPoint.y(), pointName, mx, my));
|
|
data->AddLine(firstPointId, id);
|
|
}
|
|
else
|
|
{
|
|
data->UpdateGObject(id, new VPointF(fPoint.x(), fPoint.y(), pointName, mx, my));
|
|
data->AddLine(firstPointId, id);
|
|
if (parse != Document::FullParse)
|
|
{
|
|
doc->UpdateToolData(id, data);
|
|
}
|
|
}
|
|
VDrawTool::AddRecord(id, Valentina::NormalTool, doc);
|
|
if (parse == Document::FullParse)
|
|
{
|
|
VToolNormal *point = new VToolNormal(doc, data, id, typeLine, formula, angle,
|
|
firstPointId, secondPointId, typeCreation);
|
|
scene->addItem(point);
|
|
connect(point, &VToolNormal::ChoosedTool, scene, &VMainGraphicsScene::ChoosedItem);
|
|
connect(scene, &VMainGraphicsScene::NewFactor, point, &VToolNormal::SetFactor);
|
|
doc->AddTool(id, point);
|
|
doc->IncrementReferens(firstPointId);
|
|
doc->IncrementReferens(secondPointId);
|
|
}
|
|
}
|
|
}
|
|
|
|
QPointF VToolNormal::FindPoint(const QPointF &firstPoint, const QPointF &secondPoint, const qreal &length,
|
|
const qreal &angle)
|
|
{
|
|
QLineF line(firstPoint, secondPoint);
|
|
QLineF normal = line.normalVector();
|
|
normal.setAngle(normal.angle()+angle);
|
|
normal.setLength(length);
|
|
return normal.p2();
|
|
}
|
|
|
|
void VToolNormal::FullUpdateFromFile()
|
|
{
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
if (domElement.isElement())
|
|
{
|
|
typeLine = domElement.attribute(AttrTypeLine, "");
|
|
formula = domElement.attribute(AttrLength, "");
|
|
basePointId = domElement.attribute(AttrFirstPoint, "").toUInt();
|
|
secondPointId = domElement.attribute(AttrSecondPoint, "").toUInt();
|
|
angle = domElement.attribute(AttrAngle, "").toDouble();
|
|
}
|
|
RefreshGeometry();
|
|
}
|
|
|
|
void VToolNormal::SetFactor(qreal factor)
|
|
{
|
|
VDrawTool::SetFactor(factor);
|
|
RefreshGeometry();
|
|
}
|
|
|
|
void VToolNormal::ShowContextMenu(QGraphicsSceneContextMenuEvent *event)
|
|
{
|
|
ContextMenu<DialogNormal>(this, event);
|
|
}
|
|
|
|
void VToolNormal::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
{
|
|
ContextMenu<DialogNormal>(this, event);
|
|
}
|
|
|
|
void VToolNormal::AddToFile()
|
|
{
|
|
const VPointF *point = VAbstractTool::data.GeometricObject<const VPointF *>(id);
|
|
QDomElement domElement = doc->createElement(TagName);
|
|
|
|
doc->SetAttribute(domElement, AttrId, id);
|
|
doc->SetAttribute(domElement, AttrType, ToolType);
|
|
doc->SetAttribute(domElement, AttrName, point->name());
|
|
doc->SetAttribute(domElement, AttrMx, fromPixel(point->mx()));
|
|
doc->SetAttribute(domElement, AttrMy, fromPixel(point->my()));
|
|
|
|
doc->SetAttribute(domElement, AttrTypeLine, typeLine);
|
|
doc->SetAttribute(domElement, AttrLength, formula);
|
|
doc->SetAttribute(domElement, AttrAngle, angle);
|
|
doc->SetAttribute(domElement, AttrFirstPoint, basePointId);
|
|
doc->SetAttribute(domElement, AttrSecondPoint, secondPointId);
|
|
|
|
AddToCalculation(domElement);
|
|
}
|
|
|
|
void VToolNormal::RefreshDataInFile()
|
|
{
|
|
const VPointF *point = VAbstractTool::data.GeometricObject<const VPointF *>(id);
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
if (domElement.isElement())
|
|
{
|
|
doc->SetAttribute(domElement, AttrName, point->name());
|
|
doc->SetAttribute(domElement, AttrMx, fromPixel(point->mx()));
|
|
doc->SetAttribute(domElement, AttrMy, fromPixel(point->my()));
|
|
doc->SetAttribute(domElement, AttrTypeLine, typeLine);
|
|
doc->SetAttribute(domElement, AttrLength, formula);
|
|
doc->SetAttribute(domElement, AttrAngle, angle);
|
|
doc->SetAttribute(domElement, AttrFirstPoint, basePointId);
|
|
doc->SetAttribute(domElement, AttrSecondPoint, secondPointId);
|
|
}
|
|
}
|
|
|
|
void VToolNormal::RemoveReferens()
|
|
{
|
|
doc->DecrementReferens(secondPointId);
|
|
VToolLinePoint::RemoveReferens();
|
|
}
|
|
|
|
void VToolNormal::SaveDialog(QDomElement &domElement)
|
|
{
|
|
Q_CHECK_PTR(dialog);
|
|
DialogNormal *dialogTool = qobject_cast<DialogNormal*>(dialog);
|
|
Q_CHECK_PTR(dialogTool);
|
|
doc->SetAttribute(domElement, AttrName, dialogTool->getPointName());
|
|
doc->SetAttribute(domElement, AttrTypeLine, dialogTool->getTypeLine());
|
|
doc->SetAttribute(domElement, AttrLength, dialogTool->getFormula());
|
|
doc->SetAttribute(domElement, AttrAngle, QString().setNum(dialogTool->getAngle()));
|
|
doc->SetAttribute(domElement, AttrFirstPoint, QString().setNum(dialogTool->getFirstPointId()));
|
|
doc->SetAttribute(domElement, AttrSecondPoint, QString().setNum(dialogTool->getSecondPointId()));
|
|
}
|