/************************************************************************ ** ** @file vtoolarc.cpp ** @author Roman Telezhynskyi ** @date November 15, 2013 ** ** @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 ** 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 "vtoolarc.h" #include "../../container/calculator.h" #include "../../dialogs/tools/dialogarc.h" #include "../../geometry/varc.h" #include "../container/vformula.h" #include "../../visualization/vistoolarc.h" #include const QString VToolArc::TagName = QStringLiteral("arc"); const QString VToolArc::ToolType = QStringLiteral("simple"); //--------------------------------------------------------------------------------------------------------------------- /** * @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 */ VToolArc::VToolArc(VPattern *doc, VContainer *data, quint32 id, const Source &typeCreation, QGraphicsItem *parent) :VAbstractSpline(doc, data, id, parent) { sceneType = SceneObject::Arc; this->setPath(ToolPath()); this->setPen(QPen(Qt::black, qApp->toPixel(qApp->widthHairLine())/factor)); this->setFlag(QGraphicsItem::ItemIsSelectable, true); this->setFlag(QGraphicsItem::ItemIsFocusable, true); this->setAcceptHoverEvents(true); if (typeCreation == Source::FromGui) { AddToFile(); } else { RefreshDataInFile(); } } //--------------------------------------------------------------------------------------------------------------------- /** * @brief setDialog set dialog when user want change tool option. */ void VToolArc::setDialog() { SCASSERT(dialog != nullptr); DialogArc *dialogTool = qobject_cast(dialog); SCASSERT(dialogTool != nullptr); const QSharedPointer arc = VAbstractTool::data.GeometricObject(id); dialogTool->SetCenter(arc->GetCenter().id()); dialogTool->SetF1(arc->GetFormulaF1()); dialogTool->SetF2(arc->GetFormulaF2()); dialogTool->SetRadius(arc->GetFormulaRadius()); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief Create help create tool * @param dialog dialog options. * @param scene pointer to scene. * @param doc dom document container * @param data container with variables */ VToolArc* VToolArc::Create(DialogTool *dialog, VMainGraphicsScene *scene, VPattern *doc, VContainer *data) { SCASSERT(dialog != nullptr); DialogArc *dialogTool = qobject_cast(dialog); SCASSERT(dialogTool != nullptr); const quint32 center = dialogTool->GetCenter(); QString radius = dialogTool->GetRadius(); QString f1 = dialogTool->GetF1(); QString f2 = dialogTool->GetF2(); VToolArc* point = nullptr; point=Create(0, center, radius, f1, f2, scene, doc, data, Document::FullParse, Source::FromGui); if (point != nullptr) { point->dialog=dialogTool; } return point; } //--------------------------------------------------------------------------------------------------------------------- /** * @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. */ VToolArc* VToolArc::Create(const quint32 _id, const quint32 ¢er, QString &radius, QString &f1, QString &f2, VMainGraphicsScene *scene, VPattern *doc, VContainer *data, const Document &parse, const Source &typeCreation) { qreal calcRadius = 0, calcF1 = 0, calcF2 = 0; calcRadius = qApp->toPixel(CheckFormula(_id, radius, data)); calcF1 = CheckFormula(_id, f1, data); calcF2 = CheckFormula(_id, f2, data); VPointF c = *data->GeometricObject(center); VArc *arc = new VArc(c, calcRadius, radius, calcF1, f1, calcF2, f2 ); quint32 id = _id; if (typeCreation == Source::FromGui) { id = data->AddGObject(arc); data->AddCurveLength(id); } else { data->UpdateGObject(id, arc); data->AddCurveLength(id); if (parse != Document::FullParse) { doc->UpdateToolData(id, data); } } VDrawTool::AddRecord(id, Tool::Arc, doc); if (parse == Document::FullParse) { VToolArc *toolArc = new VToolArc(doc, data, id, typeCreation); scene->addItem(toolArc); connect(toolArc, &VToolArc::ChoosedTool, scene, &VMainGraphicsScene::ChoosedItem); connect(scene, &VMainGraphicsScene::NewFactor, toolArc, &VToolArc::SetFactor); connect(scene, &VMainGraphicsScene::DisableItem, toolArc, &VToolArc::Disable); doc->AddTool(id, toolArc); doc->IncrementReferens(center); return toolArc; } return nullptr; } //--------------------------------------------------------------------------------------------------------------------- QString VToolArc::getTagName() const { return VToolArc::TagName; } //--------------------------------------------------------------------------------------------------------------------- quint32 VToolArc::getCenter() const { QSharedPointer arc = VAbstractTool::data.GeometricObject(id); SCASSERT(arc.isNull() == false); return arc->GetCenter().id(); } //--------------------------------------------------------------------------------------------------------------------- void VToolArc::setCenter(const quint32 &value) { if (value != NULL_ID) { QSharedPointer obj = VAbstractTool::data.GetGObject(id); QSharedPointer arc = qSharedPointerDynamicCast(obj); QSharedPointer point = VAbstractTool::data.GeometricObject(value); arc->SetCenter(*point.data()); SaveOption(obj); } } //--------------------------------------------------------------------------------------------------------------------- VFormula VToolArc::getFormulaRadius() const { QSharedPointer arc = VAbstractTool::data.GeometricObject(id); SCASSERT(arc.isNull() == false); VFormula radius(arc->GetFormulaRadius(), getData()); radius.setCheckZero(true); radius.setToolId(id); radius.setPostfix(VDomDocument::UnitsToStr(qApp->patternUnit())); return radius; } //--------------------------------------------------------------------------------------------------------------------- void VToolArc::setFormulaRadius(const VFormula &value) { if (value.error() == false) { QSharedPointer obj = VAbstractTool::data.GetGObject(id); QSharedPointer arc = qSharedPointerDynamicCast(obj); arc->SetFormulaRadius(value); SaveOption(obj); } } //--------------------------------------------------------------------------------------------------------------------- VFormula VToolArc::getFormulaF1() const { QSharedPointer arc = VAbstractTool::data.GeometricObject(id); SCASSERT(arc.isNull() == false); VFormula f1(arc->GetFormulaF1(), getData()); f1.setCheckZero(false); f1.setToolId(id); f1.setPostfix(QStringLiteral("°")); return f1; } //--------------------------------------------------------------------------------------------------------------------- void VToolArc::setFormulaF1(const VFormula &value) { if (value.error() == false) { QSharedPointer obj = VAbstractTool::data.GetGObject(id); QSharedPointer arc = qSharedPointerDynamicCast(obj); arc->SetFormulaF1(value); SaveOption(obj); } } //--------------------------------------------------------------------------------------------------------------------- VFormula VToolArc::getFormulaF2() const { QSharedPointer arc = VAbstractTool::data.GeometricObject(id); SCASSERT(arc.isNull() == false); VFormula f2(arc->GetFormulaF2(), getData()); f2.setCheckZero(false); f2.setToolId(id); f2.setPostfix(QStringLiteral("°")); return f2; } //--------------------------------------------------------------------------------------------------------------------- void VToolArc::setFormulaF2(const VFormula &value) { if (value.error() == false) { QSharedPointer obj = VAbstractTool::data.GetGObject(id); QSharedPointer arc = qSharedPointerDynamicCast(obj); arc->SetFormulaF2(value); SaveOption(obj); } } //--------------------------------------------------------------------------------------------------------------------- void VToolArc::ShowVisualization(bool show) { if (show) { if (vis == nullptr) { VisToolArc * visual = new VisToolArc(getData()); VMainGraphicsScene *scene = qApp->getCurrentScene(); connect(scene, &VMainGraphicsScene::NewFactor, visual, &Visualization::SetFactor); scene->addItem(visual); const QSharedPointer arc = VAbstractTool::data.GeometricObject(id); visual->setPoint1Id(arc->GetCenter().id()); visual->setRadius(qApp->FormulaToUser(arc->GetFormulaRadius())); visual->setF1(arc->GetFormulaF1()); visual->setF2(arc->GetFormulaF2()); visual->RefreshGeometry(); vis = visual; } else { VisToolArc *visual = qobject_cast(vis); if (visual != nullptr) { visual->show(); } } } else { delete vis; vis = nullptr; } } //--------------------------------------------------------------------------------------------------------------------- /** * @brief contextMenuEvent handle context menu events. * @param event context menu event. */ void VToolArc::contextMenuEvent(QGraphicsSceneContextMenuEvent *event) { ContextMenu(this, event); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief RemoveReferens decrement value of reference. */ void VToolArc::RemoveReferens() { const QSharedPointer arc = VAbstractTool::data.GeometricObject(id); doc->DecrementReferens(arc->GetCenter().id()); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief SaveDialog save options into file after change in dialog. */ void VToolArc::SaveDialog(QDomElement &domElement) { SCASSERT(dialog != nullptr); DialogArc *dialogTool = qobject_cast(dialog); SCASSERT(dialogTool != nullptr); 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()); } //--------------------------------------------------------------------------------------------------------------------- void VToolArc::SaveOptions(QDomElement &tag, QSharedPointer &obj) { QSharedPointer arc = qSharedPointerDynamicCast(obj); SCASSERT(arc.isNull() == false); doc->SetAttribute(tag, VDomDocument::AttrId, id); doc->SetAttribute(tag, AttrType, ToolType); doc->SetAttribute(tag, AttrCenter, arc->GetCenter().id()); doc->SetAttribute(tag, AttrRadius, arc->GetFormulaRadius()); doc->SetAttribute(tag, AttrAngle1, arc->GetFormulaF1()); doc->SetAttribute(tag, AttrAngle2, arc->GetFormulaF2()); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief RefreshGeometry refresh item on scene. */ void VToolArc::RefreshGeometry() { this->setPen(QPen(currentColor, qApp->toPixel(qApp->widthHairLine())/factor)); this->setPath(ToolPath()); if (vis != nullptr) { const QSharedPointer arc = VAbstractTool::data.GeometricObject(id); VisToolArc *visual = qobject_cast(vis); visual->setPoint1Id(arc->GetCenter().id()); visual->setRadius(qApp->FormulaToUser(arc->GetFormulaRadius())); visual->setF1(arc->GetFormulaF1()); visual->setF2(arc->GetFormulaF2()); visual->RefreshGeometry(); } }