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 vtoolbisector.cpp
|
2014-04-30 07:38:52 +02:00
|
|
|
** @author Roman Telezhynskyi <dismine(at)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-30 20:46:40 +02:00
|
|
|
#include "vtoolbisector.h"
|
2013-11-06 16:49:07 +01:00
|
|
|
#include "../../container/calculator.h"
|
2014-02-21 14:04:39 +01:00
|
|
|
#include "../../dialogs/tools/dialogbisector.h"
|
2013-07-30 20:46:40 +02:00
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
const QString VToolBisector::ToolType = QStringLiteral("bisector");
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-02-26 10:51:37 +01:00
|
|
|
VToolBisector::VToolBisector(VPattern *doc, VContainer *data, const quint32 &id, const QString &typeLine,
|
|
|
|
const QString &formula, const quint32 &firstPointId, const quint32 &secondPointId,
|
2014-03-11 12:43:24 +01:00
|
|
|
const quint32 &thirdPointId, const Valentina::Sources &typeCreation, QGraphicsItem *parent)
|
2014-02-06 14:57:23 +01:00
|
|
|
:VToolLinePoint(doc, data, id, typeLine, formula, secondPointId, 0, parent), firstPointId(0), thirdPointId(0)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-07-30 20:46:40 +02:00
|
|
|
this->firstPointId = firstPointId;
|
|
|
|
this->thirdPointId = thirdPointId;
|
|
|
|
|
2014-03-11 12:43:24 +01:00
|
|
|
if (typeCreation == Valentina::FromGui)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-07-30 20:46:40 +02:00
|
|
|
AddToFile();
|
|
|
|
}
|
2013-12-24 12:24:29 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
RefreshDataInFile();
|
|
|
|
}
|
2013-07-30 20:46:40 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-07-30 20:46:40 +02:00
|
|
|
QPointF VToolBisector::FindPoint(const QPointF &firstPoint, const QPointF &secondPoint,
|
2013-11-04 21:35:15 +01:00
|
|
|
const QPointF &thirdPoint, const qreal &length)
|
|
|
|
{
|
2013-07-30 20:46:40 +02:00
|
|
|
QLineF line1(secondPoint, firstPoint);
|
|
|
|
QLineF line2(secondPoint, thirdPoint);
|
|
|
|
qreal angle = line1.angleTo(line2);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (angle>180)
|
|
|
|
{
|
2013-07-30 20:46:40 +02:00
|
|
|
angle = 360 - angle;
|
2013-10-09 20:24:53 +02:00
|
|
|
line1.setAngle(line1.angle()-angle/2);
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-10-09 20:24:53 +02:00
|
|
|
line1.setAngle(line1.angle()+angle/2);
|
2013-07-30 20:46:40 +02:00
|
|
|
}
|
|
|
|
line1.setLength(length);
|
|
|
|
return line1.p2();
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolBisector::setDialog()
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
Q_CHECK_PTR(dialog);
|
|
|
|
DialogBisector *dialogTool = qobject_cast<DialogBisector*>(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(firstPointId, id);
|
|
|
|
dialogTool->setSecondPointId(basePointId, id);
|
|
|
|
dialogTool->setThirdPointId(thirdPointId, id);
|
|
|
|
dialogTool->setPointName(p->name());
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-02-25 15:02:09 +01:00
|
|
|
void VToolBisector::Create(DialogTool *dialog, VMainGraphicsScene *scene, VPattern *doc,
|
2013-11-04 21:35:15 +01:00
|
|
|
VContainer *data)
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
Q_CHECK_PTR(dialog);
|
|
|
|
DialogBisector *dialogTool = qobject_cast<DialogBisector*>(dialog);
|
|
|
|
Q_CHECK_PTR(dialogTool);
|
|
|
|
QString formula = dialogTool->getFormula();
|
2014-02-25 15:40:24 +01:00
|
|
|
quint32 firstPointId = dialogTool->getFirstPointId();
|
|
|
|
quint32 secondPointId = dialogTool->getSecondPointId();
|
|
|
|
quint32 thirdPointId = dialogTool->getThirdPointId();
|
2014-02-06 14:57:23 +01:00
|
|
|
QString typeLine = dialogTool->getTypeLine();
|
|
|
|
QString pointName = dialogTool->getPointName();
|
2013-08-13 18:48:36 +02:00
|
|
|
Create(0, formula, firstPointId, secondPointId, thirdPointId, typeLine, pointName, 5, 10, scene, doc, data,
|
2014-03-11 12:43:24 +01:00
|
|
|
Document::FullParse, Valentina::FromGui);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-02-25 15:40:24 +01:00
|
|
|
void VToolBisector::Create(const quint32 _id, const QString &formula, const quint32 &firstPointId,
|
|
|
|
const quint32 &secondPointId, const quint32 &thirdPointId, const QString &typeLine,
|
2013-08-13 18:48:36 +02:00
|
|
|
const QString &pointName, const qreal &mx, const qreal &my,
|
2014-02-25 15:02:09 +01:00
|
|
|
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
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VPointF *firstPoint = data->GeometricObject<const VPointF *>(firstPointId);
|
|
|
|
const VPointF *secondPoint = data->GeometricObject<const VPointF *>(secondPointId);
|
|
|
|
const VPointF *thirdPoint = data->GeometricObject<const VPointF *>(thirdPointId);
|
2013-08-13 18:48:36 +02:00
|
|
|
|
2014-05-21 12:12:52 +02:00
|
|
|
Calculator cal(data);
|
|
|
|
const qreal result = cal.EvalFormula(formula);
|
2014-05-21 10:51:16 +02:00
|
|
|
|
|
|
|
QPointF fPoint = VToolBisector::FindPoint(firstPoint->toQPointF(), secondPoint->toQPointF(),
|
|
|
|
thirdPoint->toQPointF(), qApp->toPixel(result));
|
|
|
|
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)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-05-21 10:51:16 +02:00
|
|
|
doc->UpdateToolData(id, data);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
}
|
2014-05-21 10:51:16 +02:00
|
|
|
VDrawTool::AddRecord(id, Valentina::BisectorTool, doc);
|
|
|
|
if (parse == Document::FullParse)
|
|
|
|
{
|
|
|
|
VToolBisector *point = new VToolBisector(doc, data, id, typeLine, formula, firstPointId, secondPointId,
|
|
|
|
thirdPointId, typeCreation);
|
|
|
|
scene->addItem(point);
|
|
|
|
connect(point, &VToolBisector::ChoosedTool, scene, &VMainGraphicsScene::ChoosedItem);
|
|
|
|
connect(scene, &VMainGraphicsScene::NewFactor, point, &VToolBisector::SetFactor);
|
|
|
|
doc->AddTool(id, point);
|
|
|
|
doc->IncrementReferens(firstPointId);
|
|
|
|
doc->IncrementReferens(secondPointId);
|
|
|
|
doc->IncrementReferens(thirdPointId);
|
|
|
|
}
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolBisector::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, "");
|
2014-02-25 15:55:02 +01:00
|
|
|
firstPointId = domElement.attribute(AttrFirstPoint, "").toUInt();
|
|
|
|
basePointId = domElement.attribute(AttrSecondPoint, "").toUInt();
|
|
|
|
thirdPointId = domElement.attribute(AttrThirdPoint, "").toUInt();
|
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
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolBisector::SetFactor(qreal factor)
|
|
|
|
{
|
2013-10-16 11:17:34 +02:00
|
|
|
VDrawTool::SetFactor(factor);
|
|
|
|
RefreshGeometry();
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-01-09 13:51:09 +01:00
|
|
|
void VToolBisector::ShowContextMenu(QGraphicsSceneContextMenuEvent *event)
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
ContextMenu<DialogBisector>(this, event);
|
2014-01-09 13:51:09 +01:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolBisector::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
ContextMenu<DialogBisector>(this, event);
|
2013-07-30 20:46:40 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolBisector::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);
|
|
|
|
|
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, AttrType, ToolType);
|
|
|
|
doc->SetAttribute(domElement, AttrName, point->name());
|
2014-03-19 19:27:11 +01:00
|
|
|
doc->SetAttribute(domElement, AttrMx, qApp->fromPixel(point->mx()));
|
|
|
|
doc->SetAttribute(domElement, AttrMy, qApp->fromPixel(point->my()));
|
2013-10-29 14:45:07 +01:00
|
|
|
|
2014-02-25 15:02:09 +01:00
|
|
|
doc->SetAttribute(domElement, AttrTypeLine, typeLine);
|
|
|
|
doc->SetAttribute(domElement, AttrLength, formula);
|
|
|
|
doc->SetAttribute(domElement, AttrFirstPoint, firstPointId);
|
|
|
|
doc->SetAttribute(domElement, AttrSecondPoint, basePointId);
|
|
|
|
doc->SetAttribute(domElement, AttrThirdPoint, thirdPointId);
|
2013-07-30 20:46:40 +02:00
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
AddToCalculation(domElement);
|
2013-07-30 20:46:40 +02:00
|
|
|
}
|
2013-09-30 18:29:03 +02:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-12-24 12:24:29 +01:00
|
|
|
void VToolBisector::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-03-19 19:27:11 +01:00
|
|
|
doc->SetAttribute(domElement, AttrMx, qApp->fromPixel(point->mx()));
|
|
|
|
doc->SetAttribute(domElement, AttrMy, qApp->fromPixel(point->my()));
|
2014-02-25 15:02:09 +01:00
|
|
|
doc->SetAttribute(domElement, AttrName, point->name());
|
|
|
|
doc->SetAttribute(domElement, AttrTypeLine, typeLine);
|
|
|
|
doc->SetAttribute(domElement, AttrLength, formula);
|
|
|
|
doc->SetAttribute(domElement, AttrFirstPoint, firstPointId);
|
|
|
|
doc->SetAttribute(domElement, AttrSecondPoint, basePointId);
|
|
|
|
doc->SetAttribute(domElement, AttrThirdPoint, thirdPointId);
|
2013-12-24 12:24:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolBisector::RemoveReferens()
|
|
|
|
{
|
2013-09-30 18:29:03 +02:00
|
|
|
doc->DecrementReferens(firstPointId);
|
|
|
|
doc->DecrementReferens(thirdPointId);
|
|
|
|
VToolLinePoint::RemoveReferens();
|
|
|
|
}
|
2014-02-06 14:57:23 +01:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-02-06 14:57:23 +01:00
|
|
|
void VToolBisector::SaveDialog(QDomElement &domElement)
|
|
|
|
{
|
|
|
|
Q_CHECK_PTR(dialog);
|
|
|
|
DialogBisector *dialogTool = qobject_cast<DialogBisector*>(dialog);
|
|
|
|
Q_CHECK_PTR(dialogTool);
|
2014-02-25 15:02:09 +01:00
|
|
|
doc->SetAttribute(domElement, AttrName, dialogTool->getPointName());
|
|
|
|
doc->SetAttribute(domElement, AttrTypeLine, dialogTool->getTypeLine());
|
|
|
|
doc->SetAttribute(domElement, AttrLength, dialogTool->getFormula());
|
|
|
|
doc->SetAttribute(domElement, AttrFirstPoint, QString().setNum(dialogTool->getFirstPointId()));
|
|
|
|
doc->SetAttribute(domElement, AttrSecondPoint, QString().setNum(dialogTool->getSecondPointId()));
|
|
|
|
doc->SetAttribute(domElement, AttrThirdPoint, QString().setNum(dialogTool->getThirdPointId()));
|
2014-02-06 14:57:23 +01:00
|
|
|
}
|