2016-05-12 21:11:21 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
2016-09-13 10:27:44 +02:00
|
|
|
** @file
|
2016-05-12 21:11:21 +02:00
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
2016-09-13 10:27:44 +02:00
|
|
|
** @date 12 9, 2016
|
2016-05-12 21:11:21 +02:00
|
|
|
**
|
|
|
|
** @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
|
|
|
|
** <https://bitbucket.org/dismine/valentina> 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 <http://www.gnu.org/licenses/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
2016-09-13 10:27:44 +02:00
|
|
|
#ifndef VISOPERATION_H
|
|
|
|
#define VISOPERATION_H
|
2016-05-12 21:11:21 +02:00
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QtGlobal>
|
|
|
|
|
2016-09-13 10:27:44 +02:00
|
|
|
#include "../visline.h"
|
2016-05-12 21:11:21 +02:00
|
|
|
|
2016-09-13 10:27:44 +02:00
|
|
|
class VisOperation : public VisLine
|
2016-05-12 21:11:21 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2016-09-13 10:27:44 +02:00
|
|
|
explicit VisOperation(const VContainer *data, QGraphicsItem *parent = nullptr);
|
|
|
|
virtual ~VisOperation();
|
2016-05-12 21:11:21 +02:00
|
|
|
|
|
|
|
void SetObjects(QVector<quint32> objects);
|
|
|
|
|
|
|
|
virtual void VisualMode(const quint32 &pointId = NULL_ID) Q_DECL_OVERRIDE;
|
|
|
|
|
|
|
|
virtual int type() const Q_DECL_OVERRIDE {return Type;}
|
|
|
|
enum { Type = UserType + static_cast<int>(Vis::ToolRotation)};
|
2016-09-13 10:27:44 +02:00
|
|
|
protected:
|
|
|
|
QVector<quint32> objects;
|
|
|
|
QColor supportColor2;
|
2016-05-12 21:11:21 +02:00
|
|
|
|
|
|
|
QVector<QGraphicsEllipseItem *> points;
|
|
|
|
QVector<QGraphicsPathItem *> curves;
|
|
|
|
|
2016-05-19 14:23:37 +02:00
|
|
|
QGraphicsEllipseItem * GetPoint(quint32 i, const QColor &color);
|
|
|
|
QGraphicsPathItem * GetCurve(quint32 i, const QColor &color);
|
2016-09-17 11:10:03 +02:00
|
|
|
|
|
|
|
template <class Item>
|
|
|
|
int AddFlippedCurve(const QPointF &firstPoint, const QPointF &secondPoint, quint32 id, int i);
|
|
|
|
|
|
|
|
void RefreshFlippedObjects(const QPointF &firstPoint, const QPointF &secondPoint);
|
2016-09-13 10:27:44 +02:00
|
|
|
private:
|
|
|
|
Q_DISABLE_COPY(VisOperation)
|
2016-05-12 21:11:21 +02:00
|
|
|
};
|
|
|
|
|
2016-09-17 11:10:03 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
template <class Item>
|
|
|
|
int VisOperation::AddFlippedCurve(const QPointF &firstPoint, const QPointF &secondPoint, quint32 id, int i)
|
|
|
|
{
|
|
|
|
const QSharedPointer<Item> curve = Visualization::data->template GeometricObject<Item>(id);
|
|
|
|
|
|
|
|
++i;
|
|
|
|
QGraphicsPathItem *path = GetCurve(i, supportColor2);
|
|
|
|
DrawPath(path, curve->GetPath(PathDirection::Show), supportColor2, Qt::SolidLine, Qt::RoundCap);
|
|
|
|
|
|
|
|
++i;
|
|
|
|
path = GetCurve(i, supportColor);
|
|
|
|
if (object1Id != NULL_ID)
|
|
|
|
{
|
|
|
|
const Item flipped = curve->Flip(QLineF(firstPoint, secondPoint));
|
|
|
|
DrawPath(path, flipped.GetPath(PathDirection::Show), supportColor, Qt::SolidLine, Qt::RoundCap);
|
|
|
|
}
|
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2016-09-13 10:27:44 +02:00
|
|
|
#endif // VISOPERATION_H
|