2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
** @file vsplinepoint.h
|
2014-04-30 07:38:52 +02:00
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
2013-11-15 13:50:05 +01:00
|
|
|
** @date November 15, 2013
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** @brief
|
|
|
|
** @copyright
|
2017-10-05 11:20:01 +02:00
|
|
|
** This source code is part of the Valentina project, a pattern making
|
2013-11-15 13:41:26 +01:00
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2020-01-31 07:00:05 +01:00
|
|
|
** <https://gitlab.com/smart-pattern/valentina> All Rights Reserved.
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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.
|
|
|
|
**
|
2013-10-27 13:36:29 +01:00
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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/>.
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
*************************************************************************/
|
2013-09-18 21:16:19 +02:00
|
|
|
|
2013-08-09 08:49:34 +02:00
|
|
|
#ifndef VSPLINEPOINT_H
|
|
|
|
#define VSPLINEPOINT_H
|
|
|
|
|
2014-06-17 11:50:11 +02:00
|
|
|
#include <QMetaType>
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QSharedDataPointer>
|
|
|
|
#include <QString>
|
|
|
|
#include <QTypeInfo>
|
|
|
|
#include <QtGlobal>
|
|
|
|
|
|
|
|
#include "vpointf.h"
|
2013-08-09 08:49:34 +02:00
|
|
|
|
2016-03-04 17:08:29 +01:00
|
|
|
class VFSplinePointData;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief The VFSplinePoint class keep information about point in spline path. Each point have two angles and two
|
|
|
|
* coefficient. Point represent at the same time first and last point of a spline.
|
|
|
|
*/
|
|
|
|
class VFSplinePoint
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
VFSplinePoint();
|
2016-09-10 13:19:32 +02:00
|
|
|
VFSplinePoint(const VPointF &pSpline, qreal kAsm1, qreal angle1, qreal kAsm2, qreal angle2);
|
2016-03-04 17:08:29 +01:00
|
|
|
VFSplinePoint(const VFSplinePoint &point);
|
|
|
|
~VFSplinePoint();
|
|
|
|
|
2017-04-19 12:27:17 +02:00
|
|
|
VFSplinePoint &operator=(const VFSplinePoint &point);
|
|
|
|
#ifdef Q_COMPILER_RVALUE_REFS
|
2019-12-30 16:13:18 +01:00
|
|
|
VFSplinePoint(const VFSplinePoint &&point) Q_DECL_NOTHROW;
|
2019-12-30 12:00:57 +01:00
|
|
|
VFSplinePoint &operator=(VFSplinePoint &&point) Q_DECL_NOTHROW;
|
2017-04-19 12:27:17 +02:00
|
|
|
#endif
|
|
|
|
|
2016-03-04 17:08:29 +01:00
|
|
|
VPointF P() const;
|
|
|
|
void SetP(const VPointF &value);
|
|
|
|
qreal Angle1() const;
|
|
|
|
void SetAngle1(const qreal &value);
|
|
|
|
void SetAngle2(const qreal &value);
|
|
|
|
qreal Angle2() const;
|
|
|
|
qreal KAsm1() const;
|
|
|
|
void SetKAsm1(const qreal &value);
|
|
|
|
qreal KAsm2() const;
|
|
|
|
void SetKAsm2(const qreal &value);
|
|
|
|
protected:
|
|
|
|
QSharedDataPointer<VFSplinePointData> d;
|
|
|
|
};
|
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(VFSplinePoint)
|
|
|
|
Q_DECLARE_TYPEINFO(VFSplinePoint, Q_MOVABLE_TYPE);
|
|
|
|
|
2014-08-20 15:21:43 +02:00
|
|
|
class VSplinePointData;
|
|
|
|
|
2013-08-09 08:49:34 +02:00
|
|
|
/**
|
2014-01-21 19:44:01 +01:00
|
|
|
* @brief The VSplinePoint class keep information about point in spline path. Each point have two angles and two
|
2016-03-04 17:08:29 +01:00
|
|
|
* lengths. Point represent at the same time first and last point of a spline.
|
2013-08-09 08:49:34 +02:00
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
class VSplinePoint
|
|
|
|
{
|
2013-08-09 08:49:34 +02:00
|
|
|
public:
|
2014-06-01 09:56:11 +02:00
|
|
|
VSplinePoint();
|
2016-09-10 13:19:32 +02:00
|
|
|
VSplinePoint(const VPointF &pSpline, qreal angle1, const QString &angle1F, qreal angle2, const QString &angle2F,
|
2016-03-04 17:08:29 +01:00
|
|
|
qreal length1, const QString &length1F, qreal length2, const QString &length2F);
|
2014-02-26 09:18:59 +01:00
|
|
|
VSplinePoint(const VSplinePoint &point);
|
2014-08-20 15:21:43 +02:00
|
|
|
~VSplinePoint();
|
|
|
|
|
2017-04-19 12:27:17 +02:00
|
|
|
VSplinePoint &operator=(const VSplinePoint &point);
|
|
|
|
#ifdef Q_COMPILER_RVALUE_REFS
|
2019-12-30 16:13:18 +01:00
|
|
|
VSplinePoint(const VSplinePoint &&point) Q_DECL_NOTHROW;
|
2019-12-30 12:00:57 +01:00
|
|
|
VSplinePoint &operator=(VSplinePoint &&point) Q_DECL_NOTHROW;
|
2017-04-19 12:27:17 +02:00
|
|
|
#endif
|
|
|
|
|
2014-02-26 09:18:59 +01:00
|
|
|
VPointF P() const;
|
|
|
|
void SetP(const VPointF &value);
|
2016-03-04 17:08:29 +01:00
|
|
|
|
2014-02-26 09:18:59 +01:00
|
|
|
qreal Angle1() const;
|
2016-03-04 17:08:29 +01:00
|
|
|
QString Angle1Formula() const;
|
|
|
|
void SetAngle1(const qreal &value, const QString &angle1F);
|
|
|
|
|
2014-02-26 09:18:59 +01:00
|
|
|
qreal Angle2() const;
|
2016-03-04 17:08:29 +01:00
|
|
|
QString Angle2Formula() const;
|
|
|
|
void SetAngle2(const qreal &value, const QString &angle2F);
|
|
|
|
|
|
|
|
qreal Length1() const;
|
|
|
|
QString Length1Formula() const;
|
|
|
|
void SetLength1(const qreal &value, const QString &length1F);
|
|
|
|
|
|
|
|
qreal Length2() const;
|
|
|
|
QString Length2Formula() const;
|
|
|
|
void SetLength2(const qreal &value, const QString &length2F);
|
2016-03-05 22:06:54 +01:00
|
|
|
|
|
|
|
bool IsMovable() const;
|
2019-08-29 14:01:27 +02:00
|
|
|
|
|
|
|
QJsonObject ToJson() const;
|
2013-08-09 08:49:34 +02:00
|
|
|
protected:
|
2014-08-20 15:21:43 +02:00
|
|
|
QSharedDataPointer<VSplinePointData> d;
|
2013-08-09 08:49:34 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(VSplinePoint)
|
2015-11-25 19:56:17 +01:00
|
|
|
Q_DECLARE_TYPEINFO(VSplinePoint, Q_MOVABLE_TYPE);
|
2013-08-09 08:49:34 +02:00
|
|
|
|
|
|
|
#endif // VSPLINEPOINT_H
|