/************************************************************************ ** ** @file vistoolendline.cpp ** @author Roman Telezhynskyi ** @date 21 7, 2014 ** ** @brief ** @copyright ** This source code is part of the Valentina 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 "vistoolendline.h" #include #include #include #include #include #include #include #include "../ifc/xml/vdomdocument.h" #include "../vgeometry/vgobject.h" #include "../vgeometry/vpointf.h" #include "../vmisc/vabstractapplication.h" #include "../vmisc/vcommonsettings.h" #include "../vmisc/vmodifierkey.h" #include "../vpatterndb/vcontainer.h" #include "../visualization.h" #include "visline.h" #include "vtranslatevars.h" //--------------------------------------------------------------------------------------------------------------------- VisToolEndLine::VisToolEndLine(const VContainer *data, QGraphicsItem *parent) : VisLine(data, parent), length(0), angle(0), point(nullptr) { this->mainColor = Qt::red; point = InitPoint(mainColor, this); } //--------------------------------------------------------------------------------------------------------------------- void VisToolEndLine::RefreshGeometry() { const QSharedPointer first = Visualization::data->GeometricObject(object1Id); QLineF line; if (qFuzzyIsNull(length)) { if (QGuiApplication::keyboardModifiers() == Qt::ShiftModifier) { line = QLineF(static_cast(*first), Visualization::scenePos); line.setAngle(CorrectAngle(line.angle())); } else { line = QLineF(static_cast(*first), Visualization::scenePos); } } else { line = VGObject::BuildLine(static_cast(*first), length, angle); DrawPoint(point, line.p2(), mainColor); } DrawLine(this, line, mainColor, lineStyle); static const QString prefix = UnitsToStr(VAbstractValApplication::VApp()->patternUnits(), true); Visualization::toolTip = tr("Point at distance and angle: angle = %1°, length = %2%3; " "%4 - sticking angle, %5 - finish creation") .arg(this->line().angle()) .arg(VAbstractApplication::VApp()->TrVars() ->FormulaToUser(QString::number(VAbstractValApplication::VApp()->fromPixel(this->line().length())), VAbstractApplication::VApp()->Settings()->GetOsSeparator()), prefix, VModifierKey::Shift(), VModifierKey::EnterKey()); } //--------------------------------------------------------------------------------------------------------------------- QString VisToolEndLine::Angle() const { return QString("%1").arg(this->line().angle()); } //--------------------------------------------------------------------------------------------------------------------- void VisToolEndLine::SetAngle(const QString &expression) { angle = FindValFromUser(expression, Visualization::data->DataVariables()); } //--------------------------------------------------------------------------------------------------------------------- QString VisToolEndLine::Length() const { return QString::number(VAbstractValApplication::VApp()->fromPixel(this->line().length())); } //--------------------------------------------------------------------------------------------------------------------- void VisToolEndLine::setLength(const QString &expression) { length = FindLengthFromUser(expression, Visualization::data->DataVariables()); }