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 vtoollineintersect.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.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2013-11-15 13:41:26 +01:00
|
|
|
** <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-31 13:34:39 +02:00
|
|
|
#include "vtoollineintersect.h"
|
2014-02-21 14:04:39 +01:00
|
|
|
#include "../../dialogs/tools/dialoglineintersect.h"
|
2015-05-07 14:31:53 +02:00
|
|
|
#include "../../libs/vgeometry/vpointf.h"
|
2014-09-03 15:52:16 +02:00
|
|
|
#include "../../visualization/vistoollineintersect.h"
|
2013-07-31 13:34:39 +02:00
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
const QString VToolLineIntersect::ToolType = QStringLiteral("lineIntersect");
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief VToolLineIntersect constructor.
|
|
|
|
* @param doc dom document container.
|
|
|
|
* @param data container with variables.
|
|
|
|
* @param id object id in container.
|
|
|
|
* @param p1Line1 id first point first line.
|
|
|
|
* @param p2Line1 id second point first line.
|
|
|
|
* @param p1Line2 id first point second line.
|
|
|
|
* @param p2Line2 id second point second line.
|
|
|
|
* @param typeCreation way we create this tool.
|
|
|
|
* @param parent parent object.
|
|
|
|
*/
|
2014-02-25 15:40:24 +01:00
|
|
|
VToolLineIntersect::VToolLineIntersect(VPattern *doc, VContainer *data, const quint32 &id,
|
|
|
|
const quint32 &p1Line1, const quint32 &p2Line1, const quint32 &p1Line2,
|
2014-06-12 09:22:29 +02:00
|
|
|
const quint32 &p2Line2, const Source &typeCreation,
|
2013-11-04 21:35:15 +01:00
|
|
|
QGraphicsItem *parent)
|
|
|
|
:VToolPoint(doc, data, id, parent), p1Line1(p1Line1), p2Line1(p2Line1), p1Line2(p1Line2),
|
2014-02-06 14:57:23 +01:00
|
|
|
p2Line2(p2Line2)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-06-12 09:22:29 +02:00
|
|
|
if (typeCreation == Source::FromGui)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-07-31 13:34:39 +02:00
|
|
|
AddToFile();
|
|
|
|
}
|
2013-12-24 12:24:29 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
RefreshDataInFile();
|
|
|
|
}
|
2013-07-31 13:34:39 +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 VToolLineIntersect::setDialog()
|
|
|
|
{
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialog != nullptr);
|
2014-02-06 14:57:23 +01:00
|
|
|
DialogLineIntersect *dialogTool = qobject_cast<DialogLineIntersect*>(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->SetP1Line1(p1Line1);
|
|
|
|
dialogTool->SetP2Line1(p2Line1);
|
|
|
|
dialogTool->SetP1Line2(p1Line2);
|
|
|
|
dialogTool->SetP2Line2(p2Line2);
|
|
|
|
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-08-14 17:48:31 +02:00
|
|
|
* @return the created tool
|
2014-06-13 19:02:41 +02:00
|
|
|
*/
|
2014-08-14 17:48:31 +02:00
|
|
|
VToolLineIntersect* VToolLineIntersect::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
|
|
|
DialogLineIntersect *dialogTool = qobject_cast<DialogLineIntersect*>(dialog);
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialogTool != nullptr);
|
2015-02-03 11:17:04 +01:00
|
|
|
const quint32 p1Line1Id = dialogTool->GetP1Line1();
|
|
|
|
const quint32 p2Line1Id = dialogTool->GetP2Line1();
|
|
|
|
const quint32 p1Line2Id = dialogTool->GetP1Line2();
|
|
|
|
const quint32 p2Line2Id = dialogTool->GetP2Line2();
|
2014-05-30 13:50:41 +02:00
|
|
|
const QString pointName = dialogTool->getPointName();
|
2014-08-14 17:48:31 +02:00
|
|
|
VToolLineIntersect* point = nullptr;
|
|
|
|
point = Create(0, p1Line1Id, p2Line1Id, p1Line2Id, p2Line2Id, pointName, 5, 10, scene, doc, data,
|
|
|
|
Document::FullParse, Source::FromGui);
|
|
|
|
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 p1Line1Id id first point first line.
|
|
|
|
* @param p2Line1Id id second point first line.
|
|
|
|
* @param p1Line2Id id first point second line.
|
|
|
|
* @param p2Line2Id id second point second line.
|
|
|
|
* @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-08-14 17:48:31 +02:00
|
|
|
* @return the created tool
|
2014-06-13 19:02:41 +02:00
|
|
|
*/
|
2014-08-14 17:48:31 +02:00
|
|
|
VToolLineIntersect* VToolLineIntersect::Create(const quint32 _id, const quint32 &p1Line1Id, const quint32 &p2Line1Id,
|
|
|
|
const quint32 &p1Line2Id, const quint32 &p2Line2Id,
|
|
|
|
const QString &pointName, const qreal &mx, const qreal &my,
|
|
|
|
VMainGraphicsScene *scene, 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> p1Line1 = data->GeometricObject<VPointF>(p1Line1Id);
|
|
|
|
const QSharedPointer<VPointF> p2Line1 = data->GeometricObject<VPointF>(p2Line1Id);
|
|
|
|
const QSharedPointer<VPointF> p1Line2 = data->GeometricObject<VPointF>(p1Line2Id);
|
|
|
|
const QSharedPointer<VPointF> p2Line2 = data->GeometricObject<VPointF>(p2Line2Id);
|
2013-08-13 18:48:36 +02:00
|
|
|
|
2013-12-29 17:48:57 +01:00
|
|
|
QLineF line1(p1Line1->toQPointF(), p2Line1->toQPointF());
|
|
|
|
QLineF line2(p1Line2->toQPointF(), p2Line2->toQPointF());
|
2013-08-13 18:48:36 +02:00
|
|
|
QPointF fPoint;
|
|
|
|
QLineF::IntersectType intersect = line1.intersect(line2, &fPoint);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (intersect == QLineF::UnboundedIntersection || intersect == QLineF::BoundedIntersection)
|
|
|
|
{
|
2014-02-25 15:40:24 +01:00
|
|
|
quint32 id = _id;
|
2014-06-12 09:22:29 +02:00
|
|
|
if (typeCreation == Source::FromGui)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-07-25 13:53:39 +02:00
|
|
|
id = data->AddGObject(new VPointF(fPoint, pointName, mx, my));
|
2013-10-10 20:45:58 +02:00
|
|
|
data->AddLine(p1Line1Id, id);
|
|
|
|
data->AddLine(id, p2Line1Id);
|
|
|
|
data->AddLine(p1Line2Id, id);
|
|
|
|
data->AddLine(id, p2Line2Id);
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-07-25 13:53:39 +02:00
|
|
|
data->UpdateGObject(id, new VPointF(fPoint, pointName, mx, my));
|
2013-10-10 20:45:58 +02:00
|
|
|
data->AddLine(p1Line1Id, id);
|
|
|
|
data->AddLine(id, p2Line1Id);
|
|
|
|
data->AddLine(p1Line2Id, id);
|
|
|
|
data->AddLine(id, p2Line2Id);
|
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
|
|
|
}
|
|
|
|
}
|
2014-08-26 20:31:28 +02:00
|
|
|
VDrawTool::AddRecord(id, Tool::LineIntersect, doc);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (parse == Document::FullParse)
|
|
|
|
{
|
|
|
|
VToolLineIntersect *point = new VToolLineIntersect(doc, data, id, p1Line1Id, p2Line1Id, p1Line2Id,
|
2013-08-13 18:48:36 +02:00
|
|
|
p2Line2Id, typeCreation);
|
|
|
|
scene->addItem(point);
|
2013-08-20 12:26:02 +02:00
|
|
|
connect(point, &VToolLineIntersect::ChoosedTool, scene, &VMainGraphicsScene::ChoosedItem);
|
2013-10-16 11:17:34 +02:00
|
|
|
connect(scene, &VMainGraphicsScene::NewFactor, point, &VToolLineIntersect::SetFactor);
|
2015-02-06 15:25:04 +01:00
|
|
|
connect(scene, &VMainGraphicsScene::DisableItem, point, &VToolLineIntersect::Disable);
|
2015-03-19 12:13:13 +01:00
|
|
|
connect(scene, &VMainGraphicsScene::EnableToolMove, point, &VToolLineIntersect::EnableToolMove);
|
2013-09-30 18:29:03 +02:00
|
|
|
doc->AddTool(id, point);
|
|
|
|
doc->IncrementReferens(p1Line1Id);
|
|
|
|
doc->IncrementReferens(p2Line1Id);
|
|
|
|
doc->IncrementReferens(p1Line2Id);
|
|
|
|
doc->IncrementReferens(p2Line2Id);
|
2014-08-14 17:48:31 +02:00
|
|
|
return point;
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
}
|
2014-08-14 17:48:31 +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 VToolLineIntersect::FullUpdateFromFile()
|
|
|
|
{
|
2015-02-06 18:43:31 +01:00
|
|
|
ReadAttributes();
|
2014-08-21 14:44:40 +02:00
|
|
|
RefreshPointGeometry(*VAbstractTool::data.GeometricObject<VPointF>(id));
|
2014-09-03 15:52:16 +02:00
|
|
|
|
|
|
|
if (vis != nullptr)
|
|
|
|
{
|
|
|
|
VisToolLineIntersect *visual = qobject_cast<VisToolLineIntersect *>(vis);
|
|
|
|
visual->setPoint1Id(p1Line1);
|
|
|
|
visual->setLine1P2Id(p2Line1);
|
|
|
|
visual->setLine2P1Id(p1Line2);
|
|
|
|
visual->setLine2P2Id(p2Line2);
|
|
|
|
vis->RefreshGeometry();
|
|
|
|
}
|
2013-07-31 13:34:39 +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 VToolLineIntersect::SetFactor(qreal factor)
|
|
|
|
{
|
2013-10-16 11:17:34 +02:00
|
|
|
VDrawTool::SetFactor(factor);
|
2014-08-21 14:44:40 +02:00
|
|
|
RefreshPointGeometry(*VAbstractTool::data.GeometricObject<VPointF>(id));
|
2013-10-16 11:17:34 +02: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 VToolLineIntersect::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
ContextMenu<DialogLineIntersect>(this, event);
|
2013-07-31 13:34:39 +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 VToolLineIntersect::RemoveReferens()
|
|
|
|
{
|
2013-09-30 18:29:03 +02:00
|
|
|
doc->DecrementReferens(p1Line1);
|
|
|
|
doc->DecrementReferens(p2Line1);
|
|
|
|
doc->DecrementReferens(p1Line2);
|
|
|
|
doc->DecrementReferens(p2Line2);
|
|
|
|
}
|
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 VToolLineIntersect::SaveDialog(QDomElement &domElement)
|
|
|
|
{
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialog != nullptr);
|
2014-02-06 14:57:23 +01:00
|
|
|
DialogLineIntersect *dialogTool = qobject_cast<DialogLineIntersect*>(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, AttrP1Line1, QString().setNum(dialogTool->GetP1Line1()));
|
|
|
|
doc->SetAttribute(domElement, AttrP2Line1, QString().setNum(dialogTool->GetP2Line1()));
|
|
|
|
doc->SetAttribute(domElement, AttrP1Line2, QString().setNum(dialogTool->GetP1Line2()));
|
|
|
|
doc->SetAttribute(domElement, AttrP2Line2, QString().setNum(dialogTool->GetP2Line2()));
|
2014-02-06 14:57:23 +01:00
|
|
|
}
|
2014-08-30 21:58:31 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VToolLineIntersect::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, AttrP1Line1, p1Line1);
|
|
|
|
doc->SetAttribute(tag, AttrP2Line1, p2Line1);
|
|
|
|
doc->SetAttribute(tag, AttrP1Line2, p1Line2);
|
|
|
|
doc->SetAttribute(tag, AttrP2Line2, p2Line2);
|
|
|
|
}
|
2014-09-01 17:32:28 +02:00
|
|
|
|
2015-02-06 18:43:31 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VToolLineIntersect::ReadToolAttributes(const QDomElement &domElement)
|
|
|
|
{
|
|
|
|
p1Line1 = doc->GetParametrUInt(domElement, AttrP1Line1, NULL_ID_STR);
|
|
|
|
p2Line1 = doc->GetParametrUInt(domElement, AttrP2Line1, NULL_ID_STR);
|
|
|
|
p1Line2 = doc->GetParametrUInt(domElement, AttrP1Line2, NULL_ID_STR);
|
|
|
|
p2Line2 = doc->GetParametrUInt(domElement, AttrP2Line2, NULL_ID_STR);
|
|
|
|
}
|
|
|
|
|
2014-09-01 17:32:28 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-02-03 11:17:04 +01:00
|
|
|
quint32 VToolLineIntersect::GetP2Line2() const
|
2014-09-01 17:32:28 +02:00
|
|
|
{
|
|
|
|
return p2Line2;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-02-03 11:17:04 +01:00
|
|
|
void VToolLineIntersect::SetP2Line2(const quint32 &value)
|
2014-09-01 17:32:28 +02:00
|
|
|
{
|
|
|
|
if (value != NULL_ID)
|
|
|
|
{
|
|
|
|
p2Line2 = value;
|
|
|
|
|
|
|
|
QSharedPointer<VGObject> obj = VAbstractTool::data.GetGObject(id);
|
|
|
|
SaveOption(obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-03 15:52:16 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VToolLineIntersect::ShowVisualization(bool show)
|
|
|
|
{
|
|
|
|
if (show)
|
|
|
|
{
|
|
|
|
if (vis == nullptr)
|
|
|
|
{
|
|
|
|
VisToolLineIntersect * visual = new VisToolLineIntersect(getData());
|
|
|
|
VMainGraphicsScene *scene = qApp->getCurrentScene();
|
|
|
|
connect(scene, &VMainGraphicsScene::NewFactor, visual, &Visualization::SetFactor);
|
|
|
|
scene->addItem(visual);
|
|
|
|
|
|
|
|
visual->setPoint1Id(p1Line1);
|
|
|
|
visual->setLine1P2Id(p2Line1);
|
|
|
|
visual->setLine2P1Id(p1Line2);
|
|
|
|
visual->setLine2P2Id(p2Line2);
|
|
|
|
visual->RefreshGeometry();
|
|
|
|
vis = visual;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
VisToolLineIntersect *visual = qobject_cast<VisToolLineIntersect *>(vis);
|
|
|
|
if (visual != nullptr)
|
|
|
|
{
|
|
|
|
visual->show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
delete vis;
|
|
|
|
vis = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-01 17:32:28 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-02-03 11:17:04 +01:00
|
|
|
quint32 VToolLineIntersect::GetP1Line2() const
|
2014-09-01 17:32:28 +02:00
|
|
|
{
|
|
|
|
return p1Line2;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-02-03 11:17:04 +01:00
|
|
|
void VToolLineIntersect::SetP1Line2(const quint32 &value)
|
2014-09-01 17:32:28 +02:00
|
|
|
{
|
|
|
|
if (value != NULL_ID)
|
|
|
|
{
|
|
|
|
p1Line2 = value;
|
|
|
|
|
|
|
|
QSharedPointer<VGObject> obj = VAbstractTool::data.GetGObject(id);
|
|
|
|
SaveOption(obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-02-03 11:17:04 +01:00
|
|
|
quint32 VToolLineIntersect::GetP2Line1() const
|
2014-09-01 17:32:28 +02:00
|
|
|
{
|
|
|
|
return p2Line1;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-02-03 11:17:04 +01:00
|
|
|
void VToolLineIntersect::SetP2Line1(const quint32 &value)
|
2014-09-01 17:32:28 +02:00
|
|
|
{
|
|
|
|
if (value != NULL_ID)
|
|
|
|
{
|
|
|
|
p2Line1 = value;
|
|
|
|
|
|
|
|
QSharedPointer<VGObject> obj = VAbstractTool::data.GetGObject(id);
|
|
|
|
SaveOption(obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-02-03 11:17:04 +01:00
|
|
|
quint32 VToolLineIntersect::GetP1Line1() const
|
2014-09-01 17:32:28 +02:00
|
|
|
{
|
|
|
|
return p1Line1;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-02-03 11:17:04 +01:00
|
|
|
void VToolLineIntersect::SetP1Line1(const quint32 &value)
|
2014-09-01 17:32:28 +02:00
|
|
|
{
|
|
|
|
if (value != NULL_ID)
|
|
|
|
{
|
|
|
|
p1Line1 = value;
|
|
|
|
|
|
|
|
QSharedPointer<VGObject> obj = VAbstractTool::data.GetGObject(id);
|
|
|
|
SaveOption(obj);
|
|
|
|
}
|
|
|
|
}
|