/************************************************************************ ** ** @file ** @author Roman Telezhynskyi ** @date 1 10, 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 . ** *************************************************************************/ #ifndef VISTOOLMOVE_H #define VISTOOLMOVE_H #include #include #include #include #include #include #include #include #include #include "../ifc/ifcdef.h" #include "../vmisc/def.h" #include "visoperation.h" class VisToolMove : public VisOperation { Q_OBJECT public: explicit VisToolMove(const VContainer *data, QGraphicsItem *parent = nullptr); virtual ~VisToolMove(); virtual void RefreshGeometry() Q_DECL_OVERRIDE; QString Angle() const; void SetAngle(const QString &expression); QString Length() const; qreal LengthValue() const; void SetLength(const QString &expression); virtual int type() const Q_DECL_OVERRIDE {return Type;} enum { Type = UserType + static_cast(Vis::ToolMove)}; private: Q_DISABLE_COPY(VisToolMove) qreal angle; qreal length; QGraphicsEllipseItem *pointOrigin; QGraphicsEllipseItem *pointFinish; template QGraphicsPathItem *AddOriginCurve(quint32 id, int &i); template int AddMovedCurve(qreal angle, qreal length, quint32 id, int i); static QPointF GetOriginPoint(const QVector &objects); QVector CreateOriginObjects(int &iPoint, int &iCurve); void CreateMovedObjects(int &iPoint, int &iCurve, qreal length, qreal angle); }; #endif // VISTOOLMOVE_H