2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-11-04 21:38:54 +01:00
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
** @file vtoolheight.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-11-04 21:38:54 +01: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-11-04 21:38:54 +01:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-11-04 21:38:54 +01: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.
|
|
|
|
**
|
|
|
|
** 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/>.
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
*************************************************************************/
|
2013-11-04 21:38:54 +01:00
|
|
|
|
2013-10-18 12:03:01 +02:00
|
|
|
#include "vtoolheight.h"
|
2014-02-21 14:04:39 +01:00
|
|
|
#include "../../dialogs/tools/dialogheight.h"
|
2015-05-07 14:31:53 +02:00
|
|
|
#include "../../libs/vgeometry/vpointf.h"
|
2014-09-03 15:52:16 +02:00
|
|
|
#include "../../visualization/vistoolheight.h"
|
2013-10-18 12:03:01 +02:00
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
const QString VToolHeight::ToolType = QStringLiteral("height");
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief VToolHeight constructor.
|
|
|
|
* @param doc dom document container.
|
|
|
|
* @param data container with variables.
|
|
|
|
* @param id object id in container.
|
|
|
|
* @param typeLine line type.
|
|
|
|
* @param basePointId id base point of projection.
|
|
|
|
* @param p1LineId id first point of line.
|
|
|
|
* @param p2LineId id second point of line.
|
|
|
|
* @param typeCreation way we create this tool.
|
|
|
|
* @param parent parent object.
|
|
|
|
*/
|
2014-02-25 15:40:24 +01:00
|
|
|
VToolHeight::VToolHeight(VPattern *doc, VContainer *data, const quint32 &id, const QString &typeLine,
|
2015-02-07 12:17:31 +01:00
|
|
|
const QString &lineColor, const quint32 &basePointId, const quint32 &p1LineId,
|
|
|
|
const quint32 &p2LineId, const Source &typeCreation, QGraphicsItem * parent)
|
|
|
|
:VToolLinePoint(doc, data, id, typeLine, lineColor, QString(), basePointId, 0, parent), p1LineId(p1LineId),
|
|
|
|
p2LineId(p2LineId)
|
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-10-18 12:03:01 +02:00
|
|
|
AddToFile();
|
|
|
|
}
|
2013-12-24 12:24:29 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
RefreshDataInFile();
|
|
|
|
}
|
2013-10-18 12:03:01 +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 VToolHeight::setDialog()
|
|
|
|
{
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialog != nullptr);
|
2014-02-06 14:57:23 +01:00
|
|
|
DialogHeight *dialogTool = qobject_cast<DialogHeight*>(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);
|
2015-02-06 18:43:31 +01:00
|
|
|
dialogTool->SetLineColor(lineColor);
|
2015-02-03 11:17:04 +01:00
|
|
|
dialogTool->SetBasePointId(basePointId);
|
|
|
|
dialogTool->SetP1LineId(p1LineId);
|
|
|
|
dialogTool->SetP2LineId(p2LineId);
|
|
|
|
dialogTool->SetPointName(p->name());
|
2013-10-18 12:03:01 +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-13 12:20:30 +02:00
|
|
|
* @return the created tool
|
2014-06-13 19:02:41 +02:00
|
|
|
*/
|
2014-08-13 12:20:30 +02:00
|
|
|
VToolHeight* VToolHeight::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
|
|
|
DialogHeight *dialogTool = qobject_cast<DialogHeight*>(dialog);
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialogTool != nullptr);
|
2014-05-30 13:50:41 +02:00
|
|
|
const QString pointName = dialogTool->getPointName();
|
2015-02-03 11:17:04 +01:00
|
|
|
const QString typeLine = dialogTool->GetTypeLine();
|
2015-02-07 12:17:31 +01:00
|
|
|
const QString lineColor = dialogTool->GetLineColor();
|
2015-02-03 11:17:04 +01:00
|
|
|
const quint32 basePointId = dialogTool->GetBasePointId();
|
|
|
|
const quint32 p1LineId = dialogTool->GetP1LineId();
|
|
|
|
const quint32 p2LineId = dialogTool->GetP2LineId();
|
2014-08-13 12:20:30 +02:00
|
|
|
|
|
|
|
VToolHeight *point = nullptr;
|
2015-02-07 12:17:31 +01:00
|
|
|
point = Create(0, pointName, typeLine, lineColor, basePointId, p1LineId, p2LineId, 5, 10, scene, doc, data,
|
2014-08-13 12:20:30 +02:00
|
|
|
Document::FullParse, Source::FromGui);
|
|
|
|
if (point != nullptr)
|
|
|
|
{
|
|
|
|
point->dialog=dialogTool;
|
|
|
|
}
|
|
|
|
return point;
|
2013-10-18 12:03:01 +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 pointName point name.
|
|
|
|
* @param typeLine line type.
|
|
|
|
* @param basePointId id base point of projection.
|
|
|
|
* @param p1LineId id first point of line.
|
|
|
|
* @param p2LineId id second point of line.
|
|
|
|
* @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-13 12:20:30 +02:00
|
|
|
* @return the created tool
|
2014-06-13 19:02:41 +02:00
|
|
|
*/
|
2014-08-13 12:20:30 +02:00
|
|
|
VToolHeight* VToolHeight::Create(const quint32 _id, const QString &pointName, const QString &typeLine,
|
2015-02-07 12:17:31 +01:00
|
|
|
const QString &lineColor, const quint32 &basePointId, const quint32 &p1LineId,
|
|
|
|
const quint32 &p2LineId, 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> basePoint = data->GeometricObject<VPointF>(basePointId);
|
|
|
|
const QSharedPointer<VPointF> p1Line = data->GeometricObject<VPointF>(p1LineId);
|
|
|
|
const QSharedPointer<VPointF> p2Line = data->GeometricObject<VPointF>(p2LineId);
|
2013-10-18 12:03:01 +02:00
|
|
|
|
2013-12-29 17:48:57 +01:00
|
|
|
QPointF pHeight = FindPoint(QLineF(p1Line->toQPointF(), p2Line->toQPointF()), basePoint->toQPointF());
|
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(pHeight, pointName, mx, my));
|
2013-10-18 12:03:01 +02:00
|
|
|
data->AddLine(basePointId, id);
|
|
|
|
data->AddLine(p1LineId, id);
|
|
|
|
data->AddLine(p2LineId, id);
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-07-25 13:53:39 +02:00
|
|
|
data->UpdateGObject(id, new VPointF(pHeight, pointName, mx, my));
|
2013-10-18 12:03:01 +02:00
|
|
|
data->AddLine(basePointId, id);
|
|
|
|
data->AddLine(p1LineId, id);
|
|
|
|
data->AddLine(p2LineId, id);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (parse != Document::FullParse)
|
|
|
|
{
|
2013-10-18 12:03:01 +02:00
|
|
|
doc->UpdateToolData(id, data);
|
|
|
|
}
|
|
|
|
}
|
2014-06-12 09:22:29 +02:00
|
|
|
VDrawTool::AddRecord(id, Tool::Height, doc);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (parse == Document::FullParse)
|
|
|
|
{
|
2015-02-07 12:17:31 +01:00
|
|
|
VToolHeight *point = new VToolHeight(doc, data, id, typeLine, lineColor, basePointId, p1LineId, p2LineId,
|
2013-10-18 12:03:01 +02:00
|
|
|
typeCreation);
|
|
|
|
scene->addItem(point);
|
|
|
|
connect(point, &VToolPoint::ChoosedTool, scene, &VMainGraphicsScene::ChoosedItem);
|
2015-02-06 15:25:04 +01:00
|
|
|
connect(scene, &VMainGraphicsScene::NewFactor, point, &VToolHeight::SetFactor);
|
|
|
|
connect(scene, &VMainGraphicsScene::DisableItem, point, &VToolHeight::Disable);
|
2015-03-19 12:13:13 +01:00
|
|
|
connect(scene, &VMainGraphicsScene::EnableToolMove, point, &VToolHeight::EnableToolMove);
|
2013-10-18 12:03:01 +02:00
|
|
|
doc->AddTool(id, point);
|
|
|
|
doc->IncrementReferens(basePointId);
|
|
|
|
doc->IncrementReferens(p1LineId);
|
|
|
|
doc->IncrementReferens(p2LineId);
|
2014-08-13 12:20:30 +02:00
|
|
|
return point;
|
2013-10-18 12:03:01 +02:00
|
|
|
}
|
2014-08-13 12:20:30 +02:00
|
|
|
return nullptr;
|
2013-10-18 12:03:01 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief FindPoint find projection base point onto line.
|
|
|
|
* @param line line
|
|
|
|
* @param point base point.
|
|
|
|
* @return point onto line.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
QPointF VToolHeight::FindPoint(const QLineF &line, const QPointF &point)
|
|
|
|
{
|
2014-10-23 10:38:57 +02:00
|
|
|
return VGObject::ClosestPoint(line, point);
|
2013-10-18 12:03:01 +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 VToolHeight::FullUpdateFromFile()
|
|
|
|
{
|
2015-02-06 18:43:31 +01:00
|
|
|
ReadAttributes();
|
2013-10-18 12:03:01 +02:00
|
|
|
RefreshGeometry();
|
|
|
|
|
2014-09-03 15:52:16 +02:00
|
|
|
if (vis != nullptr)
|
|
|
|
{
|
|
|
|
VisToolHeight *visual = qobject_cast<VisToolHeight *>(vis);
|
|
|
|
visual->setPoint1Id(basePointId);
|
|
|
|
visual->setLineP1Id(p1LineId);
|
|
|
|
visual->setLineP2Id(p2LineId);
|
2015-01-29 16:47:02 +01:00
|
|
|
visual->setLineStyle(VAbstractTool::LineStyleToPenStyle(typeLine));
|
2014-09-03 15:52:16 +02:00
|
|
|
visual->RefreshGeometry();
|
|
|
|
}
|
2013-10-18 12:03:01 +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 VToolHeight::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
ContextMenu<DialogHeight>(this, event);
|
2013-10-18 12:03:01 +02: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 VToolHeight::SaveDialog(QDomElement &domElement)
|
|
|
|
{
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialog != nullptr);
|
2014-02-06 14:57:23 +01:00
|
|
|
DialogHeight *dialogTool = qobject_cast<DialogHeight*>(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, AttrBasePoint, QString().setNum(dialogTool->GetBasePointId()));
|
|
|
|
doc->SetAttribute(domElement, AttrP1Line, QString().setNum(dialogTool->GetP1LineId()));
|
|
|
|
doc->SetAttribute(domElement, AttrP2Line, QString().setNum(dialogTool->GetP2LineId()));
|
2014-02-06 14:57:23 +01:00
|
|
|
}
|
2014-08-30 21:58:31 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VToolHeight::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);
|
2015-02-06 19:05:52 +01:00
|
|
|
doc->SetAttribute(tag, AttrLineColor, lineColor);
|
2014-08-30 21:58:31 +02:00
|
|
|
doc->SetAttribute(tag, AttrBasePoint, basePointId);
|
|
|
|
doc->SetAttribute(tag, AttrP1Line, p1LineId);
|
|
|
|
doc->SetAttribute(tag, AttrP2Line, p2LineId);
|
|
|
|
}
|
2014-09-01 17:27:20 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-02-06 18:43:31 +01:00
|
|
|
void VToolHeight::ReadToolAttributes(const QDomElement &domElement)
|
|
|
|
{
|
|
|
|
typeLine = doc->GetParametrString(domElement, AttrTypeLine, TypeLineLine);
|
|
|
|
lineColor = doc->GetParametrString(domElement, AttrLineColor, ColorBlack);
|
|
|
|
basePointId = doc->GetParametrUInt(domElement, AttrBasePoint, NULL_ID_STR);
|
|
|
|
p1LineId = doc->GetParametrUInt(domElement, AttrP1Line, NULL_ID_STR);
|
|
|
|
p2LineId = doc->GetParametrUInt(domElement, AttrP2Line, NULL_ID_STR);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-02-03 11:17:04 +01:00
|
|
|
quint32 VToolHeight::GetP2LineId() const
|
2014-09-01 17:27:20 +02:00
|
|
|
{
|
|
|
|
return p2LineId;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-02-03 11:17:04 +01:00
|
|
|
void VToolHeight::SetP2LineId(const quint32 &value)
|
2014-09-01 17:27:20 +02:00
|
|
|
{
|
|
|
|
if (value != NULL_ID)
|
|
|
|
{
|
|
|
|
p2LineId = value;
|
|
|
|
|
|
|
|
QSharedPointer<VGObject> obj = VAbstractTool::data.GetGObject(id);
|
|
|
|
SaveOption(obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-03 15:52:16 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VToolHeight::ShowVisualization(bool show)
|
|
|
|
{
|
|
|
|
if (show)
|
|
|
|
{
|
|
|
|
if (vis == nullptr)
|
|
|
|
{
|
|
|
|
VisToolHeight * visual = new VisToolHeight(getData());
|
2015-05-12 17:15:10 +02:00
|
|
|
VMainGraphicsScene *scene = qobject_cast<VMainGraphicsScene *>(qApp->getCurrentScene());
|
|
|
|
SCASSERT(scene != nullptr)
|
2014-09-03 15:52:16 +02:00
|
|
|
connect(scene, &VMainGraphicsScene::NewFactor, visual, &Visualization::SetFactor);
|
|
|
|
scene->addItem(visual);
|
|
|
|
|
|
|
|
visual->setPoint1Id(basePointId);
|
|
|
|
visual->setLineP1Id(p1LineId);
|
|
|
|
visual->setLineP2Id(p2LineId);
|
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
|
|
|
|
{
|
|
|
|
VisToolHeight *visual = qobject_cast<VisToolHeight *>(vis);
|
|
|
|
if (visual != nullptr)
|
|
|
|
{
|
|
|
|
visual->show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
delete vis;
|
|
|
|
vis = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-01 17:27:20 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-02-03 11:17:04 +01:00
|
|
|
quint32 VToolHeight::GetP1LineId() const
|
2014-09-01 17:27:20 +02:00
|
|
|
{
|
|
|
|
return p1LineId;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-02-03 11:17:04 +01:00
|
|
|
void VToolHeight::SetP1LineId(const quint32 &value)
|
2014-09-01 17:27:20 +02:00
|
|
|
{
|
|
|
|
if (value != NULL_ID)
|
|
|
|
{
|
|
|
|
p1LineId = value;
|
|
|
|
|
|
|
|
QSharedPointer<VGObject> obj = VAbstractTool::data.GetGObject(id);
|
|
|
|
SaveOption(obj);
|
|
|
|
}
|
|
|
|
}
|