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
|
2013-11-15 13:41:26 +01:00
|
|
|
** @author Roman Telezhinsky <dismine@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"
|
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-02-25 15:40:24 +01:00
|
|
|
VToolArc::VToolArc(VPattern *doc, VContainer *data, quint32 id, const Tool::Sources &typeCreation,
|
2013-11-04 21:35:15 +01:00
|
|
|
QGraphicsItem *parent)
|
2014-02-06 14:57:23 +01:00
|
|
|
:VDrawTool(doc, data, id), QGraphicsPathItem(parent)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VArc *arc = data->GeometricObject<const VArc *>(id);
|
2013-08-06 09:56:09 +02:00
|
|
|
QPainterPath path;
|
2013-12-29 17:48:57 +01:00
|
|
|
path.addPath(arc->GetPath());
|
2013-08-06 09:56:09 +02:00
|
|
|
path.setFillRule( Qt::WindingFill );
|
|
|
|
this->setPath(path);
|
2014-02-28 13:58:37 +01:00
|
|
|
this->setPen(QPen(Qt::black, toPixel(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);
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
if (typeCreation == Tool::FromGui)
|
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolArc::setDialog()
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
Q_CHECK_PTR(dialog);
|
|
|
|
DialogArc *dialogTool = qobject_cast<DialogArc*>(dialog);
|
|
|
|
Q_CHECK_PTR(dialogTool);
|
2013-12-29 17:48:57 +01:00
|
|
|
const VArc *arc = VAbstractTool::data.GeometricObject<const 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-02-25 15:02:09 +01:00
|
|
|
void VToolArc::Create(DialogTool *dialog, VMainGraphicsScene *scene, VPattern *doc,
|
2013-11-04 21:35:15 +01:00
|
|
|
VContainer *data)
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
Q_CHECK_PTR(dialog);
|
|
|
|
DialogArc *dialogTool = qobject_cast<DialogArc*>(dialog);
|
|
|
|
Q_CHECK_PTR(dialogTool);
|
2014-02-25 15:40:24 +01:00
|
|
|
quint32 center = dialogTool->GetCenter();
|
2014-02-06 14:57:23 +01:00
|
|
|
QString radius = dialogTool->GetRadius();
|
|
|
|
QString f1 = dialogTool->GetF1();
|
|
|
|
QString f2 = dialogTool->GetF2();
|
2013-09-10 14:29:06 +02:00
|
|
|
Create(0, center, radius, f1, f2, scene, doc, data, Document::FullParse, Tool::FromGui);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2014-02-25 15:40:24 +01:00
|
|
|
void VToolArc::Create(const quint32 _id, const quint32 ¢er, const QString &radius, const QString &f1,
|
2014-02-25 15:02:09 +01:00
|
|
|
const QString &f2, VMainGraphicsScene *scene, VPattern *doc, VContainer *data,
|
2013-11-06 22:11:12 +01:00
|
|
|
const Document::Documents &parse, const Tool::Sources &typeCreation)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-08-13 18:48:36 +02:00
|
|
|
qreal calcRadius = 0, calcF1 = 0, calcF2 = 0;
|
|
|
|
|
|
|
|
Calculator cal(data);
|
|
|
|
QString errorMsg;
|
|
|
|
qreal result = cal.eval(radius, &errorMsg);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (errorMsg.isEmpty())
|
|
|
|
{
|
2013-10-13 20:51:59 +02:00
|
|
|
calcRadius = toPixel(result);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
errorMsg.clear();
|
|
|
|
result = cal.eval(f1, &errorMsg);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (errorMsg.isEmpty())
|
|
|
|
{
|
2013-08-13 18:48:36 +02:00
|
|
|
calcF1 = result;
|
|
|
|
}
|
|
|
|
|
|
|
|
errorMsg.clear();
|
|
|
|
result = cal.eval(f2, &errorMsg);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (errorMsg.isEmpty())
|
|
|
|
{
|
2013-08-13 18:48:36 +02:00
|
|
|
calcF2 = result;
|
|
|
|
}
|
|
|
|
|
2013-12-29 17:48:57 +01:00
|
|
|
VPointF c = *data->GeometricObject<const VPointF *>(center);
|
|
|
|
VArc *arc = new VArc(c, calcRadius, radius, calcF1, f1, calcF2, f2 );
|
2014-02-25 15:40:24 +01:00
|
|
|
quint32 id = _id;
|
2013-11-04 21:35:15 +01:00
|
|
|
if (typeCreation == Tool::FromGui)
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
id = data->AddGObject(arc);
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
data->UpdateGObject(id, arc);
|
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-01-08 15:05:32 +01:00
|
|
|
data->AddLengthArc(id);
|
2013-09-27 11:17:00 +02:00
|
|
|
VDrawTool::AddRecord(id, Tool::ArcTool, 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);
|
2013-09-30 18:29:03 +02:00
|
|
|
doc->AddTool(id, toolArc);
|
|
|
|
doc->IncrementReferens(center);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolArc::FullUpdateFromFile()
|
|
|
|
{
|
2013-08-06 09:56:09 +02:00
|
|
|
RefreshGeometry();
|
|
|
|
}
|
|
|
|
|
2013-11-06 22:11:12 +01:00
|
|
|
void VToolArc::ChangedActivDraw(const QString &newName)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-10-28 16:45:27 +01:00
|
|
|
bool selectable = false;
|
2013-11-04 21:35:15 +01:00
|
|
|
if (nameActivDraw == newName)
|
|
|
|
{
|
2013-10-28 16:45:27 +01:00
|
|
|
selectable = true;
|
2013-10-16 11:17:34 +02:00
|
|
|
currentColor = Qt::black;
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-10-28 16:45:27 +01:00
|
|
|
selectable = false;
|
2013-10-16 11:17:34 +02:00
|
|
|
currentColor = Qt::gray;
|
2013-08-06 09:56:09 +02:00
|
|
|
}
|
2014-02-28 13:58:37 +01:00
|
|
|
this->setPen(QPen(currentColor, toPixel(widthHairLine)/factor));
|
2013-10-28 16:45:27 +01:00
|
|
|
this->setFlag(QGraphicsItem::ItemIsSelectable, selectable);
|
|
|
|
this->setAcceptHoverEvents (selectable);
|
|
|
|
VDrawTool::ChangedActivDraw(newName);
|
2013-08-06 09:56:09 +02:00
|
|
|
}
|
|
|
|
|
2014-02-25 15:40:24 +01:00
|
|
|
void VToolArc::ShowTool(quint32 id, Qt::GlobalColor color, bool enable)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-10-28 16:45:27 +01:00
|
|
|
ShowItem(this, id, color, enable);
|
2013-08-15 22:39:00 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolArc::SetFactor(qreal factor)
|
|
|
|
{
|
2013-10-16 11:17:34 +02:00
|
|
|
VDrawTool::SetFactor(factor);
|
|
|
|
RefreshGeometry();
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolArc::AddToFile()
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VArc *arc = VAbstractTool::data.GeometricObject<const VArc *>(id);
|
2013-10-29 14:45:07 +01:00
|
|
|
QDomElement domElement = doc->createElement(TagName);
|
|
|
|
|
2014-02-25 15:02:09 +01:00
|
|
|
doc->SetAttribute(domElement, AttrId, id);
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2013-12-24 12:24:29 +01:00
|
|
|
void VToolArc::RefreshDataInFile()
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VArc *arc = VAbstractTool::data.GeometricObject<const 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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolArc::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
|
|
|
|
{
|
|
|
|
if (event->button() == Qt::LeftButton)
|
|
|
|
{
|
2013-08-06 09:56:09 +02:00
|
|
|
emit ChoosedTool(id, Scene::Arc);
|
|
|
|
}
|
|
|
|
QGraphicsItem::mouseReleaseEvent(event);
|
|
|
|
}
|
|
|
|
|
2014-01-27 16:48:11 +01:00
|
|
|
//cppcheck-suppress unusedFunction
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolArc::hoverMoveEvent(QGraphicsSceneHoverEvent *event)
|
|
|
|
{
|
2013-08-06 09:56:09 +02:00
|
|
|
Q_UNUSED(event);
|
2014-02-28 13:58:37 +01:00
|
|
|
this->setPen(QPen(currentColor, toPixel(widthMainLine)/factor));
|
2013-08-06 09:56:09 +02:00
|
|
|
}
|
|
|
|
|
2014-01-27 16:48:11 +01:00
|
|
|
//cppcheck-suppress unusedFunction
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolArc::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
|
|
|
|
{
|
2013-08-06 09:56:09 +02:00
|
|
|
Q_UNUSED(event);
|
2014-02-28 13:58:37 +01:00
|
|
|
this->setPen(QPen(currentColor, toPixel(widthHairLine)/factor));
|
2013-08-06 09:56:09 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolArc::RemoveReferens()
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VArc *arc = VAbstractTool::data.GeometricObject<const VArc *>(id);
|
|
|
|
doc->DecrementReferens(arc->GetCenter().id());
|
2013-09-30 18:29:03 +02:00
|
|
|
}
|
|
|
|
|
2014-01-03 16:13:43 +01:00
|
|
|
QVariant VToolArc::itemChange(QGraphicsItem::GraphicsItemChange change, const QVariant &value)
|
|
|
|
{
|
|
|
|
if (change == QGraphicsItem::ItemSelectedChange)
|
|
|
|
{
|
|
|
|
if (value == true)
|
|
|
|
{
|
|
|
|
// do stuff if selected
|
|
|
|
this->setFocus();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// do stuff if not selected
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return QGraphicsItem::itemChange(change, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void VToolArc::keyReleaseEvent(QKeyEvent *event)
|
|
|
|
{
|
|
|
|
switch (event->key())
|
|
|
|
{
|
|
|
|
case Qt::Key_Delete:
|
|
|
|
DeleteTool(this);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
QGraphicsItem::keyReleaseEvent ( event );
|
|
|
|
}
|
|
|
|
|
2014-02-06 14:57:23 +01:00
|
|
|
void VToolArc::SaveDialog(QDomElement &domElement)
|
|
|
|
{
|
|
|
|
Q_CHECK_PTR(dialog);
|
|
|
|
DialogArc *dialogTool = qobject_cast<DialogArc*>(dialog);
|
|
|
|
Q_CHECK_PTR(dialogTool);
|
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
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolArc::RefreshGeometry()
|
|
|
|
{
|
2014-02-28 13:58:37 +01:00
|
|
|
this->setPen(QPen(currentColor, toPixel(widthHairLine)/factor));
|
2013-12-29 17:48:57 +01:00
|
|
|
const VArc *arc = VAbstractTool::data.GeometricObject<const VArc *>(id);
|
2013-08-06 09:56:09 +02:00
|
|
|
QPainterPath path;
|
2013-12-29 17:48:57 +01:00
|
|
|
path.addPath(arc->GetPath());
|
2013-08-06 09:56:09 +02:00
|
|
|
path.setFillRule( Qt::WindingFill );
|
|
|
|
this->setPath(path);
|
|
|
|
}
|