/************************************************************************ ** ** @file vtoolcubicbezierpath.cpp ** @author Roman Telezhynskyi ** @date 18 3, 2016 ** ** @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) 2016 Valentina project ** 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 . ** *************************************************************************/ #include "vtoolcubicbezierpath.h" #include #include #include #include #include #include #include #include #include "../../../dialogs/tools/dialogtool.h" #include "../../../dialogs/tools/dialogcubicbezierpath.h" #include "../../../visualization/visualization.h" #include "../../../visualization/path/vistoolcubicbezierpath.h" #include "../ifc/exception/vexception.h" #include "../ifc/xml/vdomdocument.h" #include "../ifc/ifcdef.h" #include "../vgeometry/vabstractcubicbezierpath.h" #include "../vgeometry/vabstractcurve.h" #include "../vgeometry/vcubicbezierpath.h" #include "../vgeometry/vgobject.h" #include "../vgeometry/vpointf.h" #include "../vmisc/vabstractapplication.h" #include "../vpatterndb/vcontainer.h" #include "../vwidgets/vmaingraphicsscene.h" #include "../../vabstracttool.h" #include "../vdrawtool.h" #include "vabstractspline.h" const QString VToolCubicBezierPath::ToolType = QStringLiteral("cubicBezierPath"); //--------------------------------------------------------------------------------------------------------------------- VToolCubicBezierPath::VToolCubicBezierPath(VAbstractPattern *doc, VContainer *data, quint32 id, const Source &typeCreation, QGraphicsItem *parent) : VAbstractSpline(doc, data, id, parent) { sceneType = SceneObject::SplinePath; this->setFlag(QGraphicsItem::ItemIsFocusable, true);// For keyboard input focus ToolCreation(typeCreation); } //--------------------------------------------------------------------------------------------------------------------- void VToolCubicBezierPath::setDialog() { SCASSERT(not m_dialog.isNull()) auto dialogTool = qobject_cast(m_dialog); SCASSERT(dialogTool != nullptr) const QSharedPointer splPath = VAbstractTool::data.GeometricObject(id); dialogTool->SetPath(*splPath); dialogTool->SetColor(splPath->GetColor()); dialogTool->SetPenStyle(splPath->GetPenStyle()); } //--------------------------------------------------------------------------------------------------------------------- VToolCubicBezierPath *VToolCubicBezierPath::Create(QSharedPointer dialog, VMainGraphicsScene *scene, VAbstractPattern *doc, VContainer *data) { SCASSERT(not dialog.isNull()) QSharedPointer dialogTool = dialog.objectCast(); SCASSERT(not dialogTool.isNull()) auto path = new VCubicBezierPath(dialogTool->GetPath()); const QString color = dialogTool->GetColor(); const QString penStyle = dialogTool->GetPenStyle(); for (qint32 i = 0; i < path->CountPoints(); ++i) { doc->IncrementReferens((*path)[i].getIdTool()); } path->SetColor(color); path->SetPenStyle(penStyle); VToolCubicBezierPath* spl = Create(0, path, scene, doc, data, Document::FullParse, Source::FromGui); if (spl != nullptr) { spl->m_dialog = dialogTool; } return spl; } //--------------------------------------------------------------------------------------------------------------------- VToolCubicBezierPath *VToolCubicBezierPath::Create(const quint32 _id, VCubicBezierPath *path, VMainGraphicsScene *scene, VAbstractPattern *doc, VContainer *data, const Document &parse, const Source &typeCreation) { quint32 id = _id; if (typeCreation == Source::FromGui) { id = data->AddGObject(path); data->AddCurveWithSegments(data->GeometricObject(id), id); } else { data->UpdateGObject(id, path); data->AddCurveWithSegments(data->GeometricObject(id), id); if (parse != Document::FullParse) { doc->UpdateToolData(id, data); } } if (parse == Document::FullParse) { VDrawTool::AddRecord(id, Tool::CubicBezierPath, doc); VToolCubicBezierPath *spl = new VToolCubicBezierPath(doc, data, id, typeCreation); scene->addItem(spl); InitSplinePathToolConnections(scene, spl); VAbstractPattern::AddTool(id, spl); return spl; } return nullptr; } //--------------------------------------------------------------------------------------------------------------------- void VToolCubicBezierPath::UpdatePathPoints(VAbstractPattern *doc, QDomElement &element, const VCubicBezierPath &path) { VDomDocument::RemoveAllChildren(element); for (qint32 i = 0; i < path.CountPoints(); ++i) { AddPathPoint(doc, element, path.at(i)); } } //--------------------------------------------------------------------------------------------------------------------- VCubicBezierPath VToolCubicBezierPath::getSplinePath() const { QSharedPointer splPath = VAbstractTool::data.GeometricObject(id); return *splPath.data(); } //--------------------------------------------------------------------------------------------------------------------- void VToolCubicBezierPath::setSplinePath(const VCubicBezierPath &splPath) { QSharedPointer obj = VAbstractTool::data.GetGObject(id); QSharedPointer splinePath = qSharedPointerDynamicCast(obj); *splinePath.data() = splPath; SaveOption(obj); } //--------------------------------------------------------------------------------------------------------------------- void VToolCubicBezierPath::ShowVisualization(bool show) { ShowToolVisualization(show); } //--------------------------------------------------------------------------------------------------------------------- void VToolCubicBezierPath::contextMenuEvent(QGraphicsSceneContextMenuEvent *event) { try { ContextMenu(this, event); } catch(const VExceptionToolWasDeleted &e) { Q_UNUSED(e) return;//Leave this method immediately!!! } } //--------------------------------------------------------------------------------------------------------------------- void VToolCubicBezierPath::RemoveReferens() { const QSharedPointer splPath = VAbstractTool::data.GeometricObject(id); for (qint32 i = 0; i < splPath->CountSubSpl(); ++i) { doc->DecrementReferens(splPath->at(i).getIdTool()); } } //--------------------------------------------------------------------------------------------------------------------- void VToolCubicBezierPath::SaveDialog(QDomElement &domElement) { SCASSERT(not m_dialog.isNull()) const auto dialogTool = qobject_cast(m_dialog); SCASSERT(dialogTool != nullptr) doc->SetAttribute(domElement, AttrColor, dialogTool->GetColor()); doc->SetAttribute(domElement, AttrPenStyle, dialogTool->GetPenStyle()); SetSplinePathAttributes(domElement, dialogTool->GetPath()); } //--------------------------------------------------------------------------------------------------------------------- void VToolCubicBezierPath::SaveOptions(QDomElement &tag, QSharedPointer &obj) { VAbstractSpline::SaveOptions(tag, obj); QSharedPointer splPath = qSharedPointerDynamicCast(obj); SCASSERT(splPath.isNull() == false) SetSplinePathAttributes(tag, *splPath); } //--------------------------------------------------------------------------------------------------------------------- void VToolCubicBezierPath::SetVisualization() { if (not vis.isNull()) { auto visual = qobject_cast(vis); SCASSERT(visual != nullptr) QSharedPointer splPath = VAbstractTool::data.GeometricObject(id); visual->setPath(*splPath.data()); visual->setLineStyle(LineStyleToPenStyle(splPath->GetPenStyle())); visual->SetMode(Mode::Show); visual->RefreshGeometry(); } } //--------------------------------------------------------------------------------------------------------------------- void VToolCubicBezierPath::RefreshGeometry() { QSharedPointer splPath = VAbstractTool::data.GeometricObject(id); setPath(splPath->GetPath()); SetVisualization(); } //--------------------------------------------------------------------------------------------------------------------- void VToolCubicBezierPath::AddPathPoint(VAbstractPattern *doc, QDomElement &domElement, const VPointF &splPoint) { SCASSERT(doc != nullptr) QDomElement pathPoint = doc->createElement(AttrPathPoint); doc->SetAttribute(pathPoint, AttrPSpline, splPoint.id()); domElement.appendChild(pathPoint); } //--------------------------------------------------------------------------------------------------------------------- void VToolCubicBezierPath::SetSplinePathAttributes(QDomElement &domElement, const VCubicBezierPath &path) { doc->SetAttribute(domElement, AttrType, ToolType); if (path.GetDuplicate() > 0) { doc->SetAttribute(domElement, AttrDuplicate, path.GetDuplicate()); } else { if (domElement.hasAttribute(AttrDuplicate)) { domElement.removeAttribute(AttrDuplicate); } } UpdatePathPoints(doc, domElement, path); }