2014-06-25 16:08:12 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vabstractcurve.h
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 25 6, 2014
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
2017-10-05 11:20:01 +02:00
|
|
|
** This source code is part of the Valentina project, a pattern making
|
2014-06-25 16:08:12 +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-06-25 16:08:12 +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 VABSTRACTCURVE_H
|
|
|
|
#define VABSTRACTCURVE_H
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <qcompilerdetection.h>
|
2014-06-25 16:08:12 +02:00
|
|
|
#include <QPointF>
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QSharedDataPointer>
|
|
|
|
#include <QString>
|
|
|
|
#include <QTypeInfo>
|
|
|
|
#include <QVector>
|
|
|
|
#include <QtGlobal>
|
|
|
|
|
|
|
|
#include "../ifc/ifcdef.h"
|
2016-09-06 16:48:28 +02:00
|
|
|
#include "../vmisc/vmath.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "vgeometrydef.h"
|
|
|
|
#include "vgobject.h"
|
|
|
|
|
2017-06-23 13:18:31 +02:00
|
|
|
typedef QPair<QLineF, QLineF> DirectionArrow;
|
2014-08-17 16:22:30 +02:00
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
class QPainterPath;
|
2016-02-15 15:30:48 +01:00
|
|
|
class VAbstractCurveData;
|
2014-06-25 16:08:12 +02:00
|
|
|
|
|
|
|
class VAbstractCurve :public VGObject
|
|
|
|
{
|
|
|
|
public:
|
2015-10-20 16:32:01 +02:00
|
|
|
explicit VAbstractCurve(const GOType &type, const quint32 &idObject = NULL_ID,
|
|
|
|
const Draw &mode = Draw::Calculation);
|
2015-10-12 13:52:48 +02:00
|
|
|
explicit VAbstractCurve(const VAbstractCurve &curve);
|
2018-06-26 14:53:48 +02:00
|
|
|
virtual ~VAbstractCurve() override;
|
2014-12-15 15:25:40 +01:00
|
|
|
|
2017-04-19 12:27:17 +02:00
|
|
|
VAbstractCurve& operator= (const VAbstractCurve &curve);
|
|
|
|
#ifdef Q_COMPILER_RVALUE_REFS
|
|
|
|
VAbstractCurve &operator=(VAbstractCurve &&curve) Q_DECL_NOTHROW { Swap(curve); return *this; }
|
|
|
|
#endif
|
|
|
|
|
2018-04-22 12:32:06 +02:00
|
|
|
inline void Swap(VAbstractCurve &curve) Q_DECL_NOTHROW
|
2017-04-28 08:38:09 +02:00
|
|
|
{ VGObject::Swap(curve); std::swap(d, curve.d); }
|
2017-04-19 12:27:17 +02:00
|
|
|
|
2014-06-25 16:08:12 +02:00
|
|
|
virtual QVector<QPointF> GetPoints() const =0;
|
2016-03-15 16:38:07 +01:00
|
|
|
static QVector<QPointF> GetSegmentPoints(const QVector<QPointF> &points, const QPointF &begin, const QPointF &end,
|
|
|
|
bool reverse = false);
|
2014-12-17 13:56:14 +01:00
|
|
|
QVector<QPointF> GetSegmentPoints(const QPointF &begin, const QPointF &end, bool reverse = false) const;
|
2014-12-15 15:25:40 +01:00
|
|
|
|
2017-06-23 13:18:31 +02:00
|
|
|
virtual QPainterPath GetPath() const;
|
2014-06-25 16:08:12 +02:00
|
|
|
virtual qreal GetLength() const =0;
|
2016-04-02 13:59:43 +02:00
|
|
|
qreal GetLengthByPoint(const QPointF &point) const;
|
2014-10-23 10:38:57 +02:00
|
|
|
virtual QVector<QPointF> IntersectLine(const QLineF &line) const;
|
2015-05-29 10:03:16 +02:00
|
|
|
virtual bool IsIntersectLine(const QLineF &line) const;
|
2015-06-02 15:53:19 +02:00
|
|
|
|
2017-01-25 12:21:23 +01:00
|
|
|
static bool IsPointOnCurve(const QVector<QPointF> &points, const QPointF &p);
|
2016-11-12 13:00:07 +01:00
|
|
|
bool IsPointOnCurve(const QPointF &p) const;
|
|
|
|
|
2015-06-02 15:53:19 +02:00
|
|
|
virtual qreal GetStartAngle () const=0;
|
|
|
|
virtual qreal GetEndAngle () const=0;
|
2016-01-24 17:15:08 +01:00
|
|
|
|
2016-02-15 15:30:48 +01:00
|
|
|
quint32 GetDuplicate() const;
|
|
|
|
void SetDuplicate(quint32 number);
|
|
|
|
|
2016-05-19 12:11:50 +02:00
|
|
|
QString GetColor() const;
|
|
|
|
void SetColor(const QString &color);
|
|
|
|
|
2017-05-16 12:07:53 +02:00
|
|
|
QString GetPenStyle() const;
|
|
|
|
void SetPenStyle(const QString &penStyle);
|
|
|
|
|
2017-10-11 12:51:06 +02:00
|
|
|
qreal GetApproximationScale() const;
|
|
|
|
void SetApproximationScale(qreal value);
|
|
|
|
|
2016-11-11 19:15:44 +01:00
|
|
|
static qreal PathLength(const QVector<QPointF> &path);
|
|
|
|
|
2016-01-24 17:15:08 +01:00
|
|
|
static QVector<QPointF> CurveIntersectLine(const QVector<QPointF> &points, const QLineF &line);
|
2018-07-26 19:00:24 +02:00
|
|
|
static bool CurveIntersectAxis(const QPointF &point, qreal angle, const QVector<QPointF> &curvePoints,
|
|
|
|
QPointF *intersectionPoint);
|
2016-03-17 19:12:48 +01:00
|
|
|
|
|
|
|
virtual QString NameForHistory(const QString &toolName) const=0;
|
2017-06-23 13:18:31 +02:00
|
|
|
virtual QVector<DirectionArrow> DirectionArrows() const;
|
|
|
|
static QPainterPath ShowDirection(const QVector<DirectionArrow> &arrows, qreal width);
|
|
|
|
|
2018-02-06 19:45:07 +01:00
|
|
|
static qreal LengthCurveDirectionArrow();
|
2017-05-16 12:07:53 +02:00
|
|
|
protected:
|
2016-02-15 15:30:48 +01:00
|
|
|
virtual void CreateName() =0;
|
2014-12-15 15:25:40 +01:00
|
|
|
private:
|
2016-02-15 15:30:48 +01:00
|
|
|
QSharedDataPointer<VAbstractCurveData> d;
|
|
|
|
|
2016-04-02 13:59:43 +02:00
|
|
|
static QVector<QPointF> FromBegin(const QVector<QPointF> &points, const QPointF &begin, bool *ok = nullptr);
|
|
|
|
static QVector<QPointF> ToEnd(const QVector<QPointF> &points, const QPointF &end, bool *ok = nullptr);
|
2014-06-25 16:08:12 +02:00
|
|
|
};
|
|
|
|
|
2016-02-15 15:30:48 +01:00
|
|
|
Q_DECLARE_TYPEINFO(VAbstractCurve, Q_MOVABLE_TYPE);
|
|
|
|
|
2014-06-25 16:08:12 +02:00
|
|
|
#endif // VABSTRACTCURVE_H
|