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 vtoolarc.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-08-06 09:56:09 +02:00
|
|
|
#include "vtoolarc.h"
|
2013-11-06 18:06:00 +01:00
|
|
|
#include "../../container/calculator.h"
|
2014-02-21 14:04:39 +01:00
|
|
|
#include "../../dialogs/tools/dialogarc.h"
|
2014-04-17 19:18:26 +02:00
|
|
|
#include <QKeyEvent>
|
2014-06-08 20:10:57 +02:00
|
|
|
#include "../../geometry/varc.h"
|
2013-08-06 09:56:09 +02:00
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
const QString VToolArc::TagName = QStringLiteral("arc");
|
|
|
|
const QString VToolArc::ToolType = QStringLiteral("simple");
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief VToolArc constuctor.
|
|
|
|
* @param doc dom document container
|
|
|
|
* @param data container with variables
|
|
|
|
* @param id object id in container
|
|
|
|
* @param typeCreation way we create this tool.
|
|
|
|
* @param parent parent object
|
|
|
|
*/
|
2014-06-25 11:56:19 +02:00
|
|
|
VToolArc::VToolArc(VPattern *doc, VContainer *data, quint32 id, const Source &typeCreation, QGraphicsItem *parent)
|
|
|
|
:VAbstractSpline(doc, data, id, parent)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-08-17 17:50:33 +02:00
|
|
|
sceneType = SceneObject::Arc;
|
|
|
|
|
2014-08-17 16:22:30 +02:00
|
|
|
this->setPath(ToolPath());
|
2014-03-26 05:39:07 +01:00
|
|
|
this->setPen(QPen(Qt::black, qApp->toPixel(qApp->widthHairLine())/factor));
|
2013-08-06 09:56:09 +02:00
|
|
|
this->setFlag(QGraphicsItem::ItemIsSelectable, true);
|
2014-01-03 16:13:43 +01:00
|
|
|
this->setFlag(QGraphicsItem::ItemIsFocusable, true);
|
2013-08-06 09:56:09 +02:00
|
|
|
this->setAcceptHoverEvents(true);
|
|
|
|
|
2014-06-12 09:22:29 +02:00
|
|
|
if (typeCreation == Source::FromGui)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-08-06 09:56:09 +02:00
|
|
|
AddToFile();
|
|
|
|
}
|
2013-12-24 12:24:29 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
RefreshDataInFile();
|
|
|
|
}
|
2013-08-06 09:56:09 +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 VToolArc::setDialog()
|
|
|
|
{
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialog != nullptr);
|
2014-02-06 14:57:23 +01:00
|
|
|
DialogArc *dialogTool = qobject_cast<DialogArc*>(dialog);
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialogTool != nullptr);
|
2014-08-21 14:44:40 +02:00
|
|
|
const QSharedPointer<VArc> arc = VAbstractTool::data.GeometricObject<VArc>(id);
|
2014-02-06 14:57:23 +01:00
|
|
|
dialogTool->SetCenter(arc->GetCenter().id());
|
|
|
|
dialogTool->SetF1(arc->GetFormulaF1());
|
|
|
|
dialogTool->SetF2(arc->GetFormulaF2());
|
|
|
|
dialogTool->SetRadius(arc->GetFormulaRadius());
|
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 dialog dialog options.
|
|
|
|
* @param scene pointer to scene.
|
|
|
|
* @param doc dom document container
|
|
|
|
* @param data container with variables
|
|
|
|
*/
|
2014-06-09 22:38:10 +02:00
|
|
|
VToolArc* VToolArc::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
|
|
|
DialogArc *dialogTool = qobject_cast<DialogArc*>(dialog);
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialogTool != nullptr);
|
2014-05-30 13:50:41 +02:00
|
|
|
const quint32 center = dialogTool->GetCenter();
|
2014-02-06 14:57:23 +01:00
|
|
|
QString radius = dialogTool->GetRadius();
|
|
|
|
QString f1 = dialogTool->GetF1();
|
|
|
|
QString f2 = dialogTool->GetF2();
|
2014-06-09 22:38:10 +02:00
|
|
|
VToolArc* point = nullptr;
|
2014-06-12 09:22:29 +02:00
|
|
|
point=Create(0, center, radius, f1, f2, scene, doc, data, Document::FullParse, Source::FromGui);
|
2014-06-09 22:38:10 +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 form GUI.
|
|
|
|
* @param _id tool id, 0 if tool doesn't exist yet.
|
|
|
|
* @param center id arc center point.
|
|
|
|
* @param radius arc radius.
|
|
|
|
* @param f1 start angle of arc.
|
|
|
|
* @param f2 end angle of arc.
|
|
|
|
* @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-09 22:38:10 +02:00
|
|
|
VToolArc* VToolArc::Create(const quint32 _id, const quint32 ¢er, QString &radius, QString &f1, QString &f2,
|
2014-06-12 09:22:29 +02:00
|
|
|
VMainGraphicsScene *scene, VPattern *doc, VContainer *data, const Document &parse,
|
|
|
|
const Source &typeCreation)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-08-13 18:48:36 +02:00
|
|
|
qreal calcRadius = 0, calcF1 = 0, calcF2 = 0;
|
|
|
|
|
2014-07-29 14:19:11 +02:00
|
|
|
calcRadius = qApp->toPixel(CheckFormula(_id, radius, data));
|
2014-05-21 10:51:16 +02:00
|
|
|
|
2014-07-29 14:19:11 +02:00
|
|
|
calcF1 = CheckFormula(_id, f1, data);
|
|
|
|
calcF2 = CheckFormula(_id, f2, data);
|
2013-08-13 18:48:36 +02:00
|
|
|
|
2014-08-21 14:44:40 +02:00
|
|
|
VPointF c = *data->GeometricObject<VPointF>(center);
|
2013-12-29 17:48:57 +01:00
|
|
|
VArc *arc = new VArc(c, calcRadius, radius, calcF1, f1, calcF2, f2 );
|
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
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
id = data->AddGObject(arc);
|
2014-08-15 19:27:30 +02:00
|
|
|
data->AddCurveLength<VArcLength>(id);
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
data->UpdateGObject(id, arc);
|
2014-08-15 19:27:30 +02:00
|
|
|
data->AddCurveLength<VArcLength>(id);
|
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::Arc, doc);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (parse == Document::FullParse)
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
VToolArc *toolArc = new VToolArc(doc, data, id, typeCreation);
|
2013-08-13 18:48:36 +02:00
|
|
|
scene->addItem(toolArc);
|
|
|
|
connect(toolArc, &VToolArc::ChoosedTool, scene, &VMainGraphicsScene::ChoosedItem);
|
2014-07-26 10:56:34 +02:00
|
|
|
connect(scene, &VMainGraphicsScene::NewFactor, toolArc, &VToolArc::SetFactor);
|
2014-06-24 10:23:39 +02:00
|
|
|
connect(scene, &VMainGraphicsScene::DisableItem, toolArc, &VToolArc::Disable);
|
2013-09-30 18:29:03 +02:00
|
|
|
doc->AddTool(id, toolArc);
|
|
|
|
doc->IncrementReferens(center);
|
2014-06-09 22:38:10 +02:00
|
|
|
return toolArc;
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
2014-06-09 22:38:10 +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 VToolArc::FullUpdateFromFile()
|
|
|
|
{
|
2013-08-06 09:56:09 +02:00
|
|
|
RefreshGeometry();
|
|
|
|
}
|
|
|
|
|
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 VToolArc::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
ContextMenu<DialogArc>(this, event);
|
2013-08-06 09:56:09 +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 VToolArc::AddToFile()
|
|
|
|
{
|
2014-08-21 14:44:40 +02:00
|
|
|
const QSharedPointer<VArc> arc = VAbstractTool::data.GeometricObject<VArc>(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, AttrCenter, arc->GetCenter().id());
|
|
|
|
doc->SetAttribute(domElement, AttrRadius, arc->GetFormulaRadius());
|
|
|
|
doc->SetAttribute(domElement, AttrAngle1, arc->GetFormulaF1());
|
|
|
|
doc->SetAttribute(domElement, AttrAngle2, arc->GetFormulaF2());
|
2013-08-06 09:56:09 +02:00
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
AddToCalculation(domElement);
|
2013-08-06 09:56:09 +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 VToolArc::RefreshDataInFile()
|
|
|
|
{
|
2014-08-21 14:44:40 +02:00
|
|
|
const QSharedPointer<VArc> arc = VAbstractTool::data.GeometricObject<VArc>(id);
|
2013-12-24 12:24:29 +01:00
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
2014-02-25 15:02:09 +01:00
|
|
|
doc->SetAttribute(domElement, AttrCenter, arc->GetCenter().id());
|
|
|
|
doc->SetAttribute(domElement, AttrRadius, arc->GetFormulaRadius());
|
|
|
|
doc->SetAttribute(domElement, AttrAngle1, arc->GetFormulaF1());
|
|
|
|
doc->SetAttribute(domElement, AttrAngle2, arc->GetFormulaF2());
|
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 VToolArc::RemoveReferens()
|
|
|
|
{
|
2014-08-21 14:44:40 +02:00
|
|
|
const QSharedPointer<VArc> arc = VAbstractTool::data.GeometricObject<VArc>(id);
|
2013-12-29 17:48:57 +01:00
|
|
|
doc->DecrementReferens(arc->GetCenter().id());
|
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 SaveDialog save options into file after change in dialog.
|
|
|
|
*/
|
2014-02-06 14:57:23 +01:00
|
|
|
void VToolArc::SaveDialog(QDomElement &domElement)
|
|
|
|
{
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialog != nullptr);
|
2014-02-06 14:57:23 +01:00
|
|
|
DialogArc *dialogTool = qobject_cast<DialogArc*>(dialog);
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialogTool != nullptr);
|
2014-02-25 15:02:09 +01:00
|
|
|
doc->SetAttribute(domElement, AttrCenter, QString().setNum(dialogTool->GetCenter()));
|
|
|
|
doc->SetAttribute(domElement, AttrRadius, dialogTool->GetRadius());
|
|
|
|
doc->SetAttribute(domElement, AttrAngle1, dialogTool->GetF1());
|
|
|
|
doc->SetAttribute(domElement, AttrAngle2, dialogTool->GetF2());
|
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 RefreshGeometry refresh item on scene.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolArc::RefreshGeometry()
|
|
|
|
{
|
2014-03-26 05:39:07 +01:00
|
|
|
this->setPen(QPen(currentColor, qApp->toPixel(qApp->widthHairLine())/factor));
|
2014-08-17 16:22:30 +02:00
|
|
|
this->setPath(ToolPath());
|
2013-08-06 09:56:09 +02:00
|
|
|
}
|