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 vtoolnormal.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 15:09:34 +02:00
|
|
|
#include "vtoolnormal.h"
|
2013-11-06 16:49:07 +01:00
|
|
|
#include "../../container/calculator.h"
|
2014-02-21 14:04:39 +01:00
|
|
|
#include "../../dialogs/tools/dialognormal.h"
|
2014-06-08 20:10:57 +02:00
|
|
|
#include "../../geometry/vpointf.h"
|
2014-09-03 15:52:16 +02:00
|
|
|
#include "../../visualization/vistoolnormal.h"
|
2013-07-30 15:09:34 +02:00
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
const QString VToolNormal::ToolType = QStringLiteral("normal");
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief VToolNormal 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 normal length.
|
|
|
|
* @param angle additional angle.
|
|
|
|
* @param firstPointId id first line point.
|
|
|
|
* @param secondPointId id second line point.
|
|
|
|
* @param typeCreation way we create this tool.
|
|
|
|
* @param parent parent object.
|
|
|
|
*/
|
2014-02-25 15:40:24 +01:00
|
|
|
VToolNormal::VToolNormal(VPattern *doc, VContainer *data, const quint32 &id, const QString &typeLine,
|
|
|
|
const QString &formula, const qreal &angle, const quint32 &firstPointId,
|
2014-06-12 09:22:29 +02:00
|
|
|
const quint32 &secondPointId, const Source &typeCreation, QGraphicsItem *parent)
|
2013-11-04 21:35:15 +01:00
|
|
|
:VToolLinePoint(doc, data, id, typeLine, formula, firstPointId, angle, parent),
|
2014-02-06 14:57:23 +01:00
|
|
|
secondPointId(secondPointId)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-07-30 15:09:34 +02:00
|
|
|
|
2014-06-12 09:22:29 +02:00
|
|
|
if (typeCreation == Source::FromGui)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-07-30 15:09:34 +02:00
|
|
|
AddToFile();
|
|
|
|
}
|
2013-12-24 12:24:29 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
RefreshDataInFile();
|
|
|
|
}
|
2013-07-30 15:09:34 +02:00
|
|
|
}
|
|
|
|
|
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 VToolNormal::setDialog()
|
|
|
|
{
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialog != nullptr);
|
2014-02-06 14:57:23 +01:00
|
|
|
DialogNormal *dialogTool = qobject_cast<DialogNormal*>(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);
|
2015-02-03 11:17:04 +01:00
|
|
|
dialogTool->SetTypeLine(typeLine);
|
|
|
|
dialogTool->SetFormula(formulaLength);
|
|
|
|
dialogTool->SetAngle(angle);
|
|
|
|
dialogTool->SetFirstPointId(basePointId);
|
|
|
|
dialogTool->SetSecondPointId(secondPointId);
|
|
|
|
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 from GUI.
|
|
|
|
* @param dialog dialog.
|
|
|
|
* @param scene pointer to scene.
|
|
|
|
* @param doc dom document container.
|
|
|
|
* @param data container with variables.
|
|
|
|
*/
|
2014-06-08 22:28:09 +02:00
|
|
|
VToolNormal* VToolNormal::Create(DialogTool *dialog, VMainGraphicsScene *scene, VPattern *doc, VContainer *data)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialog != nullptr);
|
2014-02-06 14:57:23 +01:00
|
|
|
DialogNormal *dialogTool = qobject_cast<DialogNormal*>(dialog);
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialogTool != nullptr);
|
2015-02-03 11:17:04 +01:00
|
|
|
QString formula = dialogTool->GetFormula();
|
|
|
|
const quint32 firstPointId = dialogTool->GetFirstPointId();
|
|
|
|
const quint32 secondPointId = dialogTool->GetSecondPointId();
|
|
|
|
const QString typeLine = dialogTool->GetTypeLine();
|
2014-05-30 13:50:41 +02:00
|
|
|
const QString pointName = dialogTool->getPointName();
|
2015-02-03 11:17:04 +01:00
|
|
|
const qreal angle = dialogTool->GetAngle();
|
2014-06-08 22:28:09 +02:00
|
|
|
VToolNormal *point = nullptr;
|
|
|
|
point=Create(0, formula, firstPointId, secondPointId, typeLine, pointName, angle, 5, 10, scene, doc, data,
|
2014-06-12 09:22:29 +02:00
|
|
|
Document::FullParse, Source::FromGui);
|
2014-06-08 22:28: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 normal length.
|
|
|
|
* @param firstPointId id first line point.
|
|
|
|
* @param secondPointId id second line point.
|
|
|
|
* @param typeLine line type.
|
|
|
|
* @param pointName point name.
|
|
|
|
* @param angle additional angle.
|
|
|
|
* @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 22:28:09 +02:00
|
|
|
VToolNormal* VToolNormal::Create(const quint32 _id, QString &formula, const quint32 &firstPointId,
|
2014-02-25 15:40:24 +01:00
|
|
|
const quint32 &secondPointId, const QString &typeLine, const QString &pointName,
|
2013-08-20 12:26:02 +02:00
|
|
|
const qreal angle, const qreal &mx, const qreal &my, VMainGraphicsScene *scene,
|
2014-06-12 09:22:29 +02:00
|
|
|
VPattern *doc, VContainer *data, 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);
|
2014-05-21 10:51:16 +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 = VToolNormal::FindPoint(firstPoint->toQPointF(), secondPoint->toQPointF(),
|
|
|
|
qApp->toPixel(result), angle);
|
|
|
|
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::Normal, doc);
|
2014-05-21 10:51:16 +02:00
|
|
|
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);
|
2015-02-06 15:25:04 +01:00
|
|
|
connect(scene, &VMainGraphicsScene::DisableItem, point, &VToolNormal::Disable);
|
2014-05-21 10:51:16 +02:00
|
|
|
doc->AddTool(id, point);
|
|
|
|
doc->IncrementReferens(firstPointId);
|
|
|
|
doc->IncrementReferens(secondPointId);
|
2014-06-08 22:28:09 +02:00
|
|
|
return point;
|
2014-05-21 10:51:16 +02:00
|
|
|
}
|
2014-06-08 22:28: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 FindPoint return normal point.
|
|
|
|
* @param firstPoint first line point.
|
|
|
|
* @param secondPoint second line point.
|
|
|
|
* @param length normal length.
|
|
|
|
* @param angle additional angle.
|
|
|
|
* @return normal point.
|
|
|
|
*/
|
2013-07-30 15:09:34 +02:00
|
|
|
QPointF VToolNormal::FindPoint(const QPointF &firstPoint, const QPointF &secondPoint, const qreal &length,
|
2013-11-04 21:35:15 +01:00
|
|
|
const qreal &angle)
|
|
|
|
{
|
2013-07-30 15:09:34 +02:00
|
|
|
QLineF line(firstPoint, secondPoint);
|
|
|
|
QLineF normal = line.normalVector();
|
|
|
|
normal.setAngle(normal.angle()+angle);
|
|
|
|
normal.setLength(length);
|
|
|
|
return normal.p2();
|
|
|
|
}
|
|
|
|
|
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 VToolNormal::FullUpdateFromFile()
|
|
|
|
{
|
2015-02-06 18:43:31 +01:00
|
|
|
ReadAttributes();
|
2013-07-31 13:34:39 +02:00
|
|
|
RefreshGeometry();
|
2014-09-03 15:52:16 +02:00
|
|
|
|
|
|
|
if (vis != nullptr)
|
|
|
|
{
|
|
|
|
VisToolNormal *visual = qobject_cast<VisToolNormal *>(vis);
|
|
|
|
visual->setPoint1Id(basePointId);
|
|
|
|
visual->setPoint2Id(secondPointId);
|
2014-09-20 17:00:29 +02:00
|
|
|
visual->setLength(qApp->FormulaToUser(formulaLength));
|
2015-02-03 11:17:04 +01:00
|
|
|
visual->SetAngle(angle);
|
2015-01-29 16:47:02 +01:00
|
|
|
visual->setLineStyle(VAbstractTool::LineStyleToPenStyle(typeLine));
|
2014-09-03 15:52:16 +02:00
|
|
|
visual->RefreshGeometry();
|
|
|
|
}
|
2013-07-30 15:09:34 +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 VToolNormal::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 VToolNormal::ShowContextMenu(QGraphicsSceneContextMenuEvent *event)
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
ContextMenu<DialogNormal>(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 VToolNormal::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
ContextMenu<DialogNormal>(this, event);
|
2013-07-30 15:09:34 +02: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 VToolNormal::RemoveReferens()
|
|
|
|
{
|
2013-09-30 18:29:03 +02:00
|
|
|
doc->DecrementReferens(secondPointId);
|
|
|
|
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 VToolNormal::SaveDialog(QDomElement &domElement)
|
|
|
|
{
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialog != nullptr);
|
2014-02-06 14:57:23 +01:00
|
|
|
DialogNormal *dialogTool = qobject_cast<DialogNormal*>(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());
|
2015-02-03 11:17:04 +01:00
|
|
|
doc->SetAttribute(domElement, AttrTypeLine, dialogTool->GetTypeLine());
|
2015-02-06 18:50:33 +01:00
|
|
|
doc->SetAttribute(domElement, AttrLineColor, dialogTool->GetLineColor());
|
2015-02-03 11:17:04 +01:00
|
|
|
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()));
|
2014-02-06 14:57:23 +01:00
|
|
|
}
|
2014-08-30 21:58:31 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VToolNormal::SaveOptions(QDomElement &tag, QSharedPointer<VGObject> &obj)
|
|
|
|
{
|
|
|
|
QSharedPointer<VPointF> point = qSharedPointerDynamicCast<VPointF>(obj);
|
|
|
|
SCASSERT(point.isNull() == false);
|
|
|
|
|
|
|
|
doc->SetAttribute(tag, VDomDocument::AttrId, id);
|
|
|
|
doc->SetAttribute(tag, AttrType, ToolType);
|
|
|
|
doc->SetAttribute(tag, AttrName, point->name());
|
|
|
|
doc->SetAttribute(tag, AttrMx, qApp->fromPixel(point->mx()));
|
|
|
|
doc->SetAttribute(tag, AttrMy, qApp->fromPixel(point->my()));
|
|
|
|
|
|
|
|
doc->SetAttribute(tag, AttrTypeLine, typeLine);
|
|
|
|
doc->SetAttribute(tag, AttrLength, formulaLength);
|
|
|
|
doc->SetAttribute(tag, AttrAngle, angle);
|
|
|
|
doc->SetAttribute(tag, AttrFirstPoint, basePointId);
|
|
|
|
doc->SetAttribute(tag, AttrSecondPoint, secondPointId);
|
|
|
|
}
|
2014-09-01 17:36:08 +02:00
|
|
|
|
2015-02-06 18:43:31 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VToolNormal::ReadToolAttributes(const QDomElement &domElement)
|
|
|
|
{
|
|
|
|
typeLine = doc->GetParametrString(domElement, AttrTypeLine, TypeLineLine);
|
|
|
|
lineColor = doc->GetParametrString(domElement, AttrLineColor, ColorBlack);
|
|
|
|
formulaLength = doc->GetParametrString(domElement, AttrLength, "");
|
|
|
|
basePointId = doc->GetParametrUInt(domElement, AttrFirstPoint, NULL_ID_STR);
|
|
|
|
secondPointId = doc->GetParametrUInt(domElement, AttrSecondPoint, NULL_ID_STR);
|
|
|
|
angle = doc->GetParametrDouble(domElement, AttrAngle, "0");
|
|
|
|
}
|
|
|
|
|
2014-09-01 17:36:08 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-02-03 11:17:04 +01:00
|
|
|
quint32 VToolNormal::GetSecondPointId() const
|
2014-09-01 17:36:08 +02:00
|
|
|
{
|
|
|
|
return secondPointId;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-02-03 11:17:04 +01:00
|
|
|
void VToolNormal::SetSecondPointId(const quint32 &value)
|
2014-09-01 17:36:08 +02:00
|
|
|
{
|
|
|
|
if (value != NULL_ID)
|
|
|
|
{
|
|
|
|
secondPointId = value;
|
|
|
|
|
|
|
|
QSharedPointer<VGObject> obj = VAbstractTool::data.GetGObject(id);
|
|
|
|
SaveOption(obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-03 15:52:16 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VToolNormal::ShowVisualization(bool show)
|
|
|
|
{
|
|
|
|
if (show)
|
|
|
|
{
|
|
|
|
if (vis == nullptr)
|
|
|
|
{
|
|
|
|
VisToolNormal * visual = new VisToolNormal(getData());
|
|
|
|
VMainGraphicsScene *scene = qApp->getCurrentScene();
|
|
|
|
connect(scene, &VMainGraphicsScene::NewFactor, visual, &Visualization::SetFactor);
|
|
|
|
scene->addItem(visual);
|
|
|
|
|
|
|
|
visual->setPoint1Id(basePointId);
|
|
|
|
visual->setPoint2Id(secondPointId);
|
2014-09-20 17:00:29 +02:00
|
|
|
visual->setLength(qApp->FormulaToUser(formulaLength));
|
2015-02-03 11:17:04 +01:00
|
|
|
visual->SetAngle(angle);
|
2015-01-29 16:47:02 +01:00
|
|
|
visual->setLineStyle(VAbstractTool::LineStyleToPenStyle(typeLine));
|
2014-09-03 15:52:16 +02:00
|
|
|
visual->RefreshGeometry();
|
|
|
|
vis = visual;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
VisToolNormal *visual = qobject_cast<VisToolNormal *>(vis);
|
|
|
|
if (visual != nullptr)
|
|
|
|
{
|
|
|
|
visual->show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
delete vis;
|
|
|
|
vis = nullptr;
|
|
|
|
}
|
|
|
|
}
|