/************************************************************************ ** ** @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-2015 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 #include #include #include #include #include #include #include "../../../dialogs/tools/dialogtool.h" #include "../../../dialogs/tools/dialogarc.h" #include "../../../visualization/path/vistoolarc.h" #include "../../../visualization/visualization.h" #include "../ifc/exception/vexception.h" #include "../ifc/xml/vdomdocument.h" #include "../ifc/ifcdef.h" #include "../vgeometry/varc.h" #include "../vgeometry/vgobject.h" #include "../vgeometry/vpointf.h" #include "../vmisc/vabstractapplication.h" #include "../vmisc/vcommonsettings.h" #include "../vpatterndb/vcontainer.h" #include "../vpatterndb/vformula.h" #include "../vpatterndb/vtranslatevars.h" #include "../vwidgets/vmaingraphicsscene.h" #include "../../vabstracttool.h" #include "../vdrawtool.h" #include "vabstractspline.h" class QDomElement; class QGraphicsSceneContextMenuEvent; 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(VAbstractPattern *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(WidthHairLine(*VAbstractTool::data.GetPatternUnit()))/factor)); this->setFlag(QGraphicsItem::ItemIsFocusable, true);// For keyboard input focus ToolCreation(typeCreation); } //--------------------------------------------------------------------------------------------------------------------- /** * @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()); dialogTool->SetColor(arc->GetColor()); } //--------------------------------------------------------------------------------------------------------------------- /** * @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, VAbstractPattern *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(); const QString color = dialogTool->GetColor(); VToolArc* point = Create(0, center, radius, f1, f2, color, 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, const QString &color, VMainGraphicsScene *scene, VAbstractPattern *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); const VPointF c = *data->GeometricObject(center); VArc *arc = new VArc(c, calcRadius, radius, calcF1, f1, calcF2, f2 ); arc->SetColor(color); quint32 id = _id; if (typeCreation == Source::FromGui) { id = data->AddGObject(arc); data->AddArc(data->GeometricObject(id), id); } else { data->UpdateGObject(id, arc); data->AddArc(data->GeometricObject(id), 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); InitArcToolConnections(scene, toolArc); doc->AddTool(id, toolArc); doc->IncrementReferens(c.getIdTool()); return toolArc; } return nullptr; } //--------------------------------------------------------------------------------------------------------------------- QString VToolArc::getTagName() const { return VAbstractPattern::TagArc; } //--------------------------------------------------------------------------------------------------------------------- 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) { if (value.getDoubleValue() > 0)// Formula don't check this, but radius can't be 0 or negative { QSharedPointer obj = VAbstractTool::data.GetGObject(id); QSharedPointer arc = qSharedPointerDynamicCast(obj); arc->SetFormulaRadius(value.GetFormula(FormulaType::FromUser), value.getDoubleValue()); 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(degreeSymbol); return f1; } //--------------------------------------------------------------------------------------------------------------------- void VToolArc::SetFormulaF1(const VFormula &value) { if (value.error() == false) { QSharedPointer obj = VAbstractTool::data.GetGObject(id); QSharedPointer arc = qSharedPointerDynamicCast(obj); if (not VFuzzyComparePossibleNulls(value.getDoubleValue(), arc->GetEndAngle()))// Angles can't be equal { arc->SetFormulaF1(value.GetFormula(FormulaType::FromUser), value.getDoubleValue()); 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(degreeSymbol); return f2; } //--------------------------------------------------------------------------------------------------------------------- void VToolArc::SetFormulaF2(const VFormula &value) { if (value.error() == false) { QSharedPointer obj = VAbstractTool::data.GetGObject(id); QSharedPointer arc = qSharedPointerDynamicCast(obj); if (not VFuzzyComparePossibleNulls(value.getDoubleValue(), arc->GetStartAngle()))// Angles can't be equal { arc->SetFormulaF2(value.GetFormula(FormulaType::FromUser), value.getDoubleValue()); SaveOption(obj); } } } //--------------------------------------------------------------------------------------------------------------------- void VToolArc::ShowVisualization(bool show) { ShowToolVisualization(show); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief contextMenuEvent handle context menu events. * @param event context menu event. */ void VToolArc::contextMenuEvent(QGraphicsSceneContextMenuEvent *event) { try { ContextMenu(this, event); } catch(const VExceptionToolWasDeleted &e) { Q_UNUSED(e); return;//Leave this method immediately!!! } } //--------------------------------------------------------------------------------------------------------------------- /** * @brief RemoveReferens decrement value of reference. */ void VToolArc::RemoveReferens() { const auto arc = VAbstractTool::data.GeometricObject(id); doc->DecrementReferens(arc->GetCenter().getIdTool()); } //--------------------------------------------------------------------------------------------------------------------- /** * @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()); doc->SetAttribute(domElement, AttrColor, dialogTool->GetColor()); } //--------------------------------------------------------------------------------------------------------------------- void VToolArc::SaveOptions(QDomElement &tag, QSharedPointer &obj) { VAbstractSpline::SaveOptions(tag, obj); QSharedPointer arc = qSharedPointerDynamicCast(obj); SCASSERT(arc.isNull() == false); 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()); } //--------------------------------------------------------------------------------------------------------------------- void VToolArc::SetVisualization() { if (not vis.isNull()) { const QSharedPointer arc = VAbstractTool::data.GeometricObject(id); VisToolArc *visual = qobject_cast(vis); SCASSERT(visual != nullptr); const VTranslateVars *trVars = qApp->TrVars(); visual->setObject1Id(arc->GetCenter().id()); visual->setRadius(trVars->FormulaToUser(arc->GetFormulaRadius(), qApp->Settings()->GetOsSeparator())); visual->setF1(trVars->FormulaToUser(arc->GetFormulaF1(), qApp->Settings()->GetOsSeparator())); visual->setF2(trVars->FormulaToUser(arc->GetFormulaF2(), qApp->Settings()->GetOsSeparator())); visual->RefreshGeometry(); } } //--------------------------------------------------------------------------------------------------------------------- /** * @brief RefreshGeometry refresh item on scene. */ void VToolArc::RefreshGeometry() { const QSharedPointer arc = VAbstractTool::data.GeometricObject(id); this->setPen(QPen(CorrectColor(arc->GetColor()), qApp->toPixel(WidthHairLine(*VAbstractTool::data.GetPatternUnit()))/factor)); this->setPath(ToolPath()); SetVisualization(); }