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"
|
2014-06-08 20:10:57 +02:00
|
|
|
#include "../../geometry/vpointf.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-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief VToolBisector constructor.
|
|
|
|
* @param doc dom document container.
|
|
|
|
* @param data container with variables.
|
|
|
|
* @param id object id in container.
|
|
|
|
* @param typeLine line type.
|
|
|
|
* @param formula string with formula length of bisector.
|
|
|
|
* @param firstPointId id first point of angle.
|
|
|
|
* @param secondPointId id second point of angle.
|
|
|
|
* @param thirdPointId id third point of angle.
|
|
|
|
* @param typeCreation way we create this tool.
|
|
|
|
* @param parent parent object.
|
|
|
|
*/
|
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-06-12 09:22:29 +02:00
|
|
|
const quint32 &thirdPointId, const Source &typeCreation, QGraphicsItem *parent)
|
2014-08-17 17:20:55 +02:00
|
|
|
:VToolLinePoint(doc, data, id, typeLine, formula, secondPointId, 0, parent), firstPointId(NULL_ID),
|
|
|
|
thirdPointId(NULL_ID)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-07-30 20:46:40 +02:00
|
|
|
this->firstPointId = firstPointId;
|
|
|
|
this->thirdPointId = thirdPointId;
|
|
|
|
|
2014-06-12 09:22:29 +02:00
|
|
|
if (typeCreation == Source::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-07-24 15:26:59 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
qreal VToolBisector::BisectorAngle(const QPointF &firstPoint, const QPointF &secondPoint, const QPointF &thirdPoint)
|
|
|
|
{
|
|
|
|
QLineF line1(secondPoint, firstPoint);
|
|
|
|
QLineF line2(secondPoint, thirdPoint);
|
|
|
|
qreal angle = line1.angleTo(line2);
|
|
|
|
if (angle>180)
|
|
|
|
{
|
|
|
|
angle = 360 - angle;
|
|
|
|
return line1.angle()-angle/2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return line1.angle()+angle/2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief FindPoint find bisector point.
|
|
|
|
* @param firstPoint first point of angle.
|
|
|
|
* @param secondPoint second point of angle.
|
|
|
|
* @param thirdPoint third point of angle.
|
|
|
|
* @param length bisector length.
|
|
|
|
* @return bisector point.
|
|
|
|
*/
|
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);
|
2014-07-24 15:26:59 +02:00
|
|
|
line1.setAngle(BisectorAngle(firstPoint, secondPoint, thirdPoint));
|
2013-07-30 20:46:40 +02:00
|
|
|
line1.setLength(length);
|
|
|
|
return line1.p2();
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief setDialog set dialog when user want change tool option.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolBisector::setDialog()
|
|
|
|
{
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialog != nullptr);
|
2014-02-06 14:57:23 +01:00
|
|
|
DialogBisector *dialogTool = qobject_cast<DialogBisector*>(dialog);
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialogTool != nullptr);
|
2014-08-21 14:44:40 +02:00
|
|
|
const QSharedPointer<VPointF> p = VAbstractTool::data.GeometricObject<VPointF>(id);
|
2014-02-06 14:57:23 +01:00
|
|
|
dialogTool->setTypeLine(typeLine);
|
2014-08-11 16:41:17 +02:00
|
|
|
dialogTool->setFormula(formulaLength);
|
2014-07-29 15:08:38 +02:00
|
|
|
dialogTool->setFirstPointId(firstPointId);
|
|
|
|
dialogTool->setSecondPointId(basePointId);
|
|
|
|
dialogTool->setThirdPointId(thirdPointId);
|
2014-02-06 14:57:23 +01:00
|
|
|
dialogTool->setPointName(p->name());
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief Create help create tool form GUI.
|
|
|
|
* @param dialog dialog.
|
|
|
|
* @param scene pointer to scene.
|
|
|
|
* @param doc dom document container.
|
|
|
|
* @param data container with variables.
|
|
|
|
*/
|
2014-06-08 19:56:09 +02:00
|
|
|
VToolBisector* VToolBisector::Create(DialogTool *dialog, VMainGraphicsScene *scene, VPattern *doc,
|
2013-11-04 21:35:15 +01:00
|
|
|
VContainer *data)
|
|
|
|
{
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialog != nullptr);
|
2014-02-06 14:57:23 +01:00
|
|
|
DialogBisector *dialogTool = qobject_cast<DialogBisector*>(dialog);
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialogTool != nullptr);
|
2014-02-06 14:57:23 +01:00
|
|
|
QString formula = dialogTool->getFormula();
|
2014-05-30 13:50:41 +02:00
|
|
|
const quint32 firstPointId = dialogTool->getFirstPointId();
|
|
|
|
const quint32 secondPointId = dialogTool->getSecondPointId();
|
|
|
|
const quint32 thirdPointId = dialogTool->getThirdPointId();
|
|
|
|
const QString typeLine = dialogTool->getTypeLine();
|
|
|
|
const QString pointName = dialogTool->getPointName();
|
2014-06-08 19:56:09 +02:00
|
|
|
VToolBisector *point = nullptr;
|
|
|
|
point=Create(0, formula, firstPointId, secondPointId, thirdPointId, typeLine, pointName, 5, 10, scene, doc, data,
|
2014-06-12 09:22:29 +02:00
|
|
|
Document::FullParse, Source::FromGui);
|
2014-06-08 19:56:09 +02:00
|
|
|
if (point != nullptr)
|
|
|
|
{
|
|
|
|
point->dialog=dialogTool;
|
|
|
|
}
|
|
|
|
return point;
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief Create help create tool.
|
|
|
|
* @param _id tool id, 0 if tool doesn't exist yet.
|
|
|
|
* @param formula string with formula.
|
|
|
|
* @param firstPointId id first point of angle.
|
|
|
|
* @param secondPointId id second point of angle.
|
|
|
|
* @param thirdPointId id third point of angle.
|
|
|
|
* @param typeLine line type.
|
|
|
|
* @param pointName point name.
|
|
|
|
* @param mx label bias x axis.
|
|
|
|
* @param my label bias y axis.
|
|
|
|
* @param scene pointer to scene.
|
|
|
|
* @param doc dom document container.
|
|
|
|
* @param data container with variables.
|
|
|
|
* @param parse parser file mode.
|
|
|
|
* @param typeCreation way we create this tool.
|
|
|
|
*/
|
2014-06-08 19:56:09 +02:00
|
|
|
VToolBisector* VToolBisector::Create(const quint32 _id, QString &formula, const quint32 &firstPointId,
|
2014-02-25 15:40:24 +01:00
|
|
|
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-06-12 09:22:29 +02:00
|
|
|
const Document &parse, const Source &typeCreation)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-08-21 14:44:40 +02:00
|
|
|
const QSharedPointer<VPointF> firstPoint = data->GeometricObject<VPointF>(firstPointId);
|
|
|
|
const QSharedPointer<VPointF> secondPoint = data->GeometricObject<VPointF>(secondPointId);
|
|
|
|
const QSharedPointer<VPointF> thirdPoint = data->GeometricObject<VPointF>(thirdPointId);
|
2013-08-13 18:48:36 +02:00
|
|
|
|
2014-07-29 14:19:11 +02:00
|
|
|
const qreal result = CheckFormula(_id, formula, data);
|
2014-05-21 10:51:16 +02:00
|
|
|
|
|
|
|
QPointF fPoint = VToolBisector::FindPoint(firstPoint->toQPointF(), secondPoint->toQPointF(),
|
|
|
|
thirdPoint->toQPointF(), qApp->toPixel(result));
|
|
|
|
quint32 id = _id;
|
2014-06-12 09:22:29 +02:00
|
|
|
if (typeCreation == Source::FromGui)
|
2014-05-21 10:51:16 +02:00
|
|
|
{
|
2014-07-25 13:53:39 +02:00
|
|
|
id = data->AddGObject(new VPointF(fPoint, pointName, mx, my));
|
2014-05-21 10:51:16 +02:00
|
|
|
data->AddLine(firstPointId, id);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-07-25 13:53:39 +02:00
|
|
|
data->UpdateGObject(id, new VPointF(fPoint, pointName, mx, my));
|
2014-05-21 10:51:16 +02:00
|
|
|
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-08-26 20:31:28 +02:00
|
|
|
VDrawTool::AddRecord(id, Tool::Bisector, doc);
|
2014-05-21 10:51:16 +02:00
|
|
|
if (parse == Document::FullParse)
|
|
|
|
{
|
|
|
|
VToolBisector *point = new VToolBisector(doc, data, id, typeLine, formula, firstPointId, secondPointId,
|
|
|
|
thirdPointId, typeCreation);
|
|
|
|
scene->addItem(point);
|
2014-06-24 10:23:39 +02:00
|
|
|
connect(point, &VToolPoint::ChoosedTool, scene, &VMainGraphicsScene::ChoosedItem);
|
2014-05-21 10:51:16 +02:00
|
|
|
connect(scene, &VMainGraphicsScene::NewFactor, point, &VToolBisector::SetFactor);
|
2014-06-24 10:23:39 +02:00
|
|
|
connect(scene, &VMainGraphicsScene::DisableItem, point, &VToolPoint::Disable);
|
2014-05-21 10:51:16 +02:00
|
|
|
doc->AddTool(id, point);
|
|
|
|
doc->IncrementReferens(firstPointId);
|
|
|
|
doc->IncrementReferens(secondPointId);
|
|
|
|
doc->IncrementReferens(thirdPointId);
|
2014-06-08 19:56:09 +02:00
|
|
|
return point;
|
2014-05-21 10:51:16 +02:00
|
|
|
}
|
2014-06-08 19:56:09 +02:00
|
|
|
return nullptr;
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief FullUpdateFromFile update tool data form file.
|
|
|
|
*/
|
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, "");
|
2014-08-11 16:41:17 +02:00
|
|
|
formulaLength = 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
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief SetFactor set current scale factor of scene.
|
|
|
|
* @param factor scene scale factor.
|
|
|
|
*/
|
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-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief ShowContextMenu show context menu.
|
|
|
|
* @param event context menu event.
|
|
|
|
*/
|
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
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief contextMenuEvent handle context menu events.
|
|
|
|
* @param event context menu event.
|
|
|
|
*/
|
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
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief AddToFile add tag with informations about tool into file.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolBisector::AddToFile()
|
|
|
|
{
|
2014-08-21 14:44:40 +02:00
|
|
|
const QSharedPointer<VPointF> point = VAbstractTool::data.GeometricObject<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);
|
2014-08-11 16:41:17 +02:00
|
|
|
doc->SetAttribute(domElement, AttrLength, formulaLength);
|
2014-02-25 15:02:09 +01:00
|
|
|
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
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief RefreshDataInFile refresh attributes in file. If attributes don't exist create them.
|
|
|
|
*/
|
2013-12-24 12:24:29 +01:00
|
|
|
void VToolBisector::RefreshDataInFile()
|
|
|
|
{
|
2014-08-21 14:44:40 +02:00
|
|
|
const QSharedPointer<VPointF> point = VAbstractTool::data.GeometricObject<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);
|
2014-08-11 16:41:17 +02:00
|
|
|
doc->SetAttribute(domElement, AttrLength, formulaLength);
|
2014-02-25 15:02:09 +01:00
|
|
|
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
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief RemoveReferens decrement value of reference.
|
|
|
|
*/
|
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-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief SaveDialog save options into file after change in dialog.
|
|
|
|
*/
|
2014-02-06 14:57:23 +01:00
|
|
|
void VToolBisector::SaveDialog(QDomElement &domElement)
|
|
|
|
{
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialog != nullptr);
|
2014-02-06 14:57:23 +01:00
|
|
|
DialogBisector *dialogTool = qobject_cast<DialogBisector*>(dialog);
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialogTool != nullptr);
|
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
|
|
|
}
|