2014-08-15 15:54:24 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vispath.h
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 15 8, 2014
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
2017-10-05 11:20:01 +02:00
|
|
|
** This source code is part of the Valentina project, a pattern making
|
2014-08-15 15:54:24 +02:00
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2014-08-15 15:54:24 +02:00
|
|
|
** <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/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#ifndef VISPATH_H
|
|
|
|
#define VISPATH_H
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <qcompilerdetection.h>
|
|
|
|
#include <QGraphicsItem>
|
|
|
|
#include <QMetaObject>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
|
|
|
#include <QtGlobal>
|
|
|
|
|
|
|
|
#include "../visualization.h"
|
|
|
|
#include "../vmisc/def.h"
|
2017-05-16 12:07:53 +02:00
|
|
|
#include "../vwidgets/vcurvepathitem.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
|
2017-02-14 16:33:30 +01:00
|
|
|
class VSimplePoint;
|
2014-08-15 15:54:24 +02:00
|
|
|
|
2017-05-16 12:07:53 +02:00
|
|
|
class VisPath : public Visualization, public VCurvePathItem
|
2014-08-15 15:54:24 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2017-04-01 16:27:55 +02:00
|
|
|
explicit VisPath(const VContainer *data, QGraphicsItem *parent = nullptr);
|
2017-06-16 13:53:08 +02:00
|
|
|
virtual ~VisPath() = default;
|
2014-08-15 15:54:24 +02:00
|
|
|
|
2017-10-11 12:51:06 +02:00
|
|
|
void setApproximationScale(qreal approximationScale);
|
|
|
|
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual int type() const Q_DECL_OVERRIDE {return Type;}
|
2014-08-26 20:31:28 +02:00
|
|
|
enum { Type = UserType + static_cast<int>(Vis::Path)};
|
2014-08-15 15:54:24 +02:00
|
|
|
protected:
|
2017-10-11 12:51:06 +02:00
|
|
|
qreal m_approximationScale;
|
|
|
|
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual void InitPen() Q_DECL_OVERRIDE;
|
|
|
|
virtual void AddOnScene() Q_DECL_OVERRIDE;
|
2017-02-14 16:33:30 +01:00
|
|
|
|
|
|
|
VSimplePoint *GetPoint(QVector<VSimplePoint *> &points, quint32 i, const QColor &color);
|
2014-08-15 15:54:24 +02:00
|
|
|
private:
|
|
|
|
Q_DISABLE_COPY(VisPath)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VISPATH_H
|