valentina/src/app/tools/drawTools/vtoolcutarc.cpp

299 lines
11 KiB
C++
Raw Normal View History

2014-01-08 15:05:32 +01:00
/************************************************************************
**
** @file vtoolcutarc.cpp
** @author Roman Telezhynskyi <dismine(at)gmail.com>
2014-01-08 15:05:32 +01:00
** @date 7 1, 2014
**
** @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.
**
** Valentina is free software: you can redistribute it and/or modify
** 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/>.
**
*************************************************************************/
#include "vtoolcutarc.h"
#include "../../container/calculator.h"
#include "../../dialogs/tools/dialogcutarc.h"
#include "../../geometry/vpointf.h"
#include "../../geometry/varc.h"
2014-01-08 15:05:32 +01:00
const QString VToolCutArc::ToolType = QStringLiteral("cutArc");
2014-06-26 12:26:13 +02:00
const QString VToolCutArc::AttrArc = QStringLiteral("arc");
2014-01-08 15:05:32 +01:00
//---------------------------------------------------------------------------------------------------------------------
/**
* @brief VToolCutArc constructor.
* @param doc dom document container.
* @param data container with variables.
* @param id object id in container.
* @param formula string with formula length first arc.
* @param arcId id arc in data container.
* @param arc1id id first cutting arc.
* @param arc2id id second cutting arc.
* @param typeCreation way we create this tool.
* @param parent parent object.
*/
VToolCutArc::VToolCutArc(VPattern *doc, VContainer *data, const quint32 &id, const QString &formula,
const quint32 &arcId, const quint32 &arc1id, const quint32 &arc2id,
const Source &typeCreation, QGraphicsItem * parent)
2014-06-26 12:26:13 +02:00
:VToolCut(doc, data, id, formula, arcId, arc1id, arc2id, parent)
2014-01-08 15:05:32 +01:00
{
2014-06-26 12:26:13 +02:00
RefreshCurve(firstCurve, curve1id, SimpleCurvePoint::ForthPoint);
RefreshCurve(secondCurve, curve2id, SimpleCurvePoint::FirstPoint);
2014-01-08 15:05:32 +01:00
if (typeCreation == Source::FromGui)
2014-01-08 15:05:32 +01:00
{
AddToFile();
}
else
{
RefreshDataInFile();
}
}
//---------------------------------------------------------------------------------------------------------------------
/**
* @brief setDialog set dialog when user want change tool option.
*/
2014-01-08 15:05:32 +01:00
void VToolCutArc::setDialog()
{
SCASSERT(dialog != nullptr);
DialogCutArc *dialogTool = qobject_cast<DialogCutArc*>(dialog);
SCASSERT(dialogTool != nullptr);
2014-01-08 15:05:32 +01:00
const VPointF *point = VAbstractTool::data.GeometricObject<const VPointF *>(id);
dialogTool->setFormula(formula);
2014-06-26 12:26:13 +02:00
dialogTool->setArcId(curveCutId, id);
dialogTool->setPointName(point->name());
2014-01-08 15:05:32 +01: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.
*/
VToolCutArc* VToolCutArc::Create(DialogTool *dialog, VMainGraphicsScene *scene, VPattern *doc, VContainer *data)
2014-01-08 15:05:32 +01:00
{
SCASSERT(dialog != nullptr);
DialogCutArc *dialogTool = qobject_cast<DialogCutArc*>(dialog);
SCASSERT(dialogTool != nullptr);
const QString pointName = dialogTool->getPointName();
QString formula = dialogTool->getFormula();
const quint32 arcId = dialogTool->getArcId();
VToolCutArc* point = nullptr;
point=Create(0, pointName, formula, arcId, 5, 10, scene, doc, data, Document::FullParse, Source::FromGui);
if (point != nullptr)
{
point->dialog=dialogTool;
}
return point;
2014-01-08 15:05:32 +01:00
}
//---------------------------------------------------------------------------------------------------------------------
/**
* @brief Create help create tool.
* @param _id tool id, 0 if tool doesn't exist yet.
* @param pointName point name.
* @param formula string with formula length first arc.
* @param arcId id arc in data container.
* @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.
*/
VToolCutArc* VToolCutArc::Create(const quint32 _id, const QString &pointName, QString &formula, const quint32 &arcId,
const qreal &mx, const qreal &my, VMainGraphicsScene *scene, VPattern *doc,
VContainer *data, const Document &parse, const Source &typeCreation)
2014-01-08 15:05:32 +01:00
{
const VArc *arc = data->GeometricObject<const VArc *>(arcId);
const qreal result = CheckFormula(formula, data);
2014-01-08 15:05:32 +01:00
VArc arc1;
VArc arc2;
QPointF point = arc->CutArc(qApp->toPixel(result), arc1, arc2);
2014-01-08 15:05:32 +01:00
quint32 id = _id;
quint32 arc1id = 0;
quint32 arc2id = 0;
if (typeCreation == Source::FromGui)
{
2014-07-25 17:43:32 +02:00
id = data->AddGObject(new VPointF(point, pointName, mx, my));
arc1id = data->AddGObject(new VArc(arc1));
arc2id = data->AddGObject(new VArc(arc2));
2014-01-08 15:05:32 +01:00
2014-07-25 17:43:32 +02:00
data->AddLengthArc(arc1id);
data->AddLengthArc(arc2id);
}
else
{
2014-07-25 17:43:32 +02:00
data->UpdateGObject(id, new VPointF(point, pointName, mx, my));
2014-01-08 15:05:32 +01:00
arc1id = id + 1;
arc2id = id + 2;
2014-01-08 15:05:32 +01:00
2014-07-25 17:43:32 +02:00
data->UpdateGObject(arc1id, new VArc(arc1));
data->UpdateGObject(arc2id, new VArc(arc2));
2014-01-08 15:05:32 +01:00
2014-07-25 17:43:32 +02:00
data->AddLengthArc(arc1id);
data->AddLengthArc(arc2id);
if (parse != Document::FullParse)
2014-01-08 15:05:32 +01:00
{
doc->UpdateToolData(id, data);
2014-01-08 15:05:32 +01:00
}
}
VDrawTool::AddRecord(id, Tool::CutArcTool, doc);
if (parse == Document::FullParse)
{
VToolCutArc *point = new VToolCutArc(doc, data, id, formula, arcId, arc1id, arc2id, typeCreation);
scene->addItem(point);
connect(point, &VToolPoint::ChoosedTool, scene, &VMainGraphicsScene::ChoosedItem);
connect(scene, &VMainGraphicsScene::NewFactor, point, &VToolCutArc::SetFactor);
connect(scene, &VMainGraphicsScene::DisableItem, point, &VToolPoint::Disable);
doc->AddTool(id, point);
doc->AddTool(arc1id, point);
doc->AddTool(arc2id, point);
doc->IncrementReferens(arcId);
return point;
}
return nullptr;
2014-01-08 15:05:32 +01:00
}
//---------------------------------------------------------------------------------------------------------------------
/**
* @brief FullUpdateFromFile update tool data form file.
*/
2014-01-08 15:05:32 +01:00
void VToolCutArc::FullUpdateFromFile()
{
2014-06-26 12:26:13 +02:00
FullUpdateCurveFromFile(AttrArc);
2014-01-08 15:05:32 +01:00
}
//---------------------------------------------------------------------------------------------------------------------
/**
2014-06-26 12:26:13 +02:00
* @brief CurveChoosed send signal about selection from cutted arc.
* @param id object id in container.
*/
2014-06-26 12:26:13 +02:00
void VToolCutArc::CurveChoosed(quint32 id)
2014-01-08 15:05:32 +01:00
{
emit ChoosedTool(id, SceneObject::Arc);
2014-01-08 15:05:32 +01:00
}
//---------------------------------------------------------------------------------------------------------------------
/**
* @brief ShowContextMenu show context menu.
* @param event context menu event.
*/
void VToolCutArc::ShowContextMenu(QGraphicsSceneContextMenuEvent *event)
{
ContextMenu<DialogCutArc>(this, event);
}
//---------------------------------------------------------------------------------------------------------------------
/**
* @brief contextMenuEvent handle context menu events.
* @param event context menu event.
*/
2014-01-08 15:05:32 +01:00
void VToolCutArc::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
{
ContextMenu<DialogCutArc>(this, event);
2014-01-08 15:05:32 +01:00
}
//---------------------------------------------------------------------------------------------------------------------
/**
* @brief AddToFile add tag with informations about tool into file.
*/
2014-01-08 15:05:32 +01:00
void VToolCutArc::AddToFile()
{
const VPointF *point = VAbstractTool::data.GeometricObject<const VPointF *>(id);
QDomElement domElement = doc->createElement(TagName);
doc->SetAttribute(domElement, VDomDocument::AttrId, id);
doc->SetAttribute(domElement, AttrType, ToolType);
doc->SetAttribute(domElement, AttrName, point->name());
doc->SetAttribute(domElement, AttrMx, qApp->fromPixel(point->mx()));
doc->SetAttribute(domElement, AttrMy, qApp->fromPixel(point->my()));
2014-01-08 15:05:32 +01:00
doc->SetAttribute(domElement, AttrLength, formula);
2014-06-26 12:26:13 +02:00
doc->SetAttribute(domElement, AttrArc, curveCutId);
2014-01-08 15:05:32 +01:00
AddToCalculation(domElement);
}
//---------------------------------------------------------------------------------------------------------------------
/**
* @brief RefreshDataInFile refresh attributes in file. If attributes don't exist create them.
*/
2014-01-08 15:05:32 +01:00
void VToolCutArc::RefreshDataInFile()
{
const VPointF *point = VAbstractTool::data.GeometricObject<const VPointF *>(id);
QDomElement domElement = doc->elementById(QString().setNum(id));
if (domElement.isElement())
{
doc->SetAttribute(domElement, AttrName, point->name());
doc->SetAttribute(domElement, AttrMx, qApp->fromPixel(point->mx()));
doc->SetAttribute(domElement, AttrMy, qApp->fromPixel(point->my()));
doc->SetAttribute(domElement, AttrLength, formula);
2014-06-26 12:26:13 +02:00
doc->SetAttribute(domElement, AttrArc, curveCutId);
2014-01-08 15:05:32 +01:00
}
}
//---------------------------------------------------------------------------------------------------------------------
/**
* @brief SaveDialog save options into file after change in dialog.
*/
void VToolCutArc::SaveDialog(QDomElement &domElement)
{
SCASSERT(dialog != nullptr);
DialogCutArc *dialogTool = qobject_cast<DialogCutArc*>(dialog);
SCASSERT(dialogTool != nullptr);
doc->SetAttribute(domElement, AttrName, dialogTool->getPointName());
doc->SetAttribute(domElement, AttrLength, dialogTool->getFormula());
doc->SetAttribute(domElement, AttrArc, QString().setNum(dialogTool->getArcId()));
}
//---------------------------------------------------------------------------------------------------------------------
/**
2014-06-26 12:26:13 +02:00
* @brief RefreshCurve refresh curve on scene.
* @param curve curve.
* @param curveId curve id.
* @param tr point type.
*/
2014-06-26 12:26:13 +02:00
void VToolCutArc::RefreshCurve(VSimpleCurve *curve, quint32 curveId, SimpleCurvePoint tr)
2014-01-08 15:05:32 +01:00
{
2014-06-26 12:26:13 +02:00
const VArc *arc = VAbstractTool::data.GeometricObject<const VArc *>(curveId);
2014-01-08 15:05:32 +01:00
QPainterPath path;
path.addPath(arc->GetPath());
path.setFillRule( Qt::WindingFill );
2014-06-25 16:18:35 +02:00
if (tr == SimpleCurvePoint::FirstPoint)
2014-01-08 15:05:32 +01:00
{
path.translate(-arc->GetP1().x(), -arc->GetP1().y());
}
else
{
path.translate(-arc->GetP2().x(), -arc->GetP2().y());
}
2014-06-26 12:26:13 +02:00
curve->setPath(path);
2014-01-08 15:05:32 +01:00
}