valentina/src/libs/vgeometry/vabstractcurve.h

133 lines
4.9 KiB
C
Raw Normal View History

2014-06-25 16:08:12 +02:00
/************************************************************************
**
** @file vabstractcurve.h
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date 25 6, 2014
**
** @brief
** @copyright
** 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.
** Copyright (C) 2013-2015 Valentina project
** <https://gitlab.com/smart-pattern/valentina> All Rights Reserved.
2014-06-25 16:08:12 +02:00
**
** 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
#include <QPointF>
#include <QSharedDataPointer>
#include <QString>
#include <QTypeInfo>
#include <QVector>
#include <QtGlobal>
2023-07-13 16:49:20 +02:00
#include "../vmisc/typedef.h"
#include "vgeometrydef.h"
#include "vgobject.h"
2022-08-13 18:26:55 +02:00
using DirectionArrow = QPair<QLineF, QLineF>;
class QPainterPath;
class VAbstractCurveData;
2014-06-25 16:08:12 +02:00
2021-09-25 16:18:33 +02:00
QT_WARNING_PUSH
QT_WARNING_DISABLE_GCC("-Wsuggest-final-types")
QT_WARNING_DISABLE_GCC("-Wsuggest-final-methods")
2023-07-13 16:49:20 +02:00
class VAbstractCurve : public VGObject
2014-06-25 16:08:12 +02:00
{
public:
2015-10-20 16:32:01 +02:00
explicit VAbstractCurve(const GOType &type, const quint32 &idObject = NULL_ID,
const Draw &mode = Draw::Calculation);
2022-08-13 18:26:55 +02:00
VAbstractCurve(const VAbstractCurve &curve);
~VAbstractCurve() override;
2023-07-13 16:49:20 +02:00
auto operator=(const VAbstractCurve &curve) -> VAbstractCurve &;
#ifdef Q_COMPILER_RVALUE_REFS
2023-07-13 16:49:20 +02:00
VAbstractCurve(VAbstractCurve &&curve) noexcept;
auto operator=(VAbstractCurve &&curve) noexcept -> VAbstractCurve &;
#endif
2023-07-13 16:49:20 +02:00
virtual auto GetPoints() const -> QVector<QPointF> = 0;
static auto GetSegmentPoints(const QVector<QPointF> &points, const QPointF &begin, const QPointF &end, bool reverse,
QString &error) -> QVector<QPointF>;
2022-08-13 18:26:55 +02:00
auto GetSegmentPoints(const QPointF &begin, const QPointF &end, bool reverse,
const QString &piece = QString()) const -> QVector<QPointF>;
2022-08-13 18:26:55 +02:00
virtual auto GetPath() const -> QPainterPath;
2023-07-13 16:49:20 +02:00
virtual auto GetLength() const -> qreal = 0;
2022-08-13 18:26:55 +02:00
auto GetLengthByPoint(const QPointF &point) const -> qreal;
virtual auto IntersectLine(const QLineF &line) const -> QVector<QPointF>;
virtual auto IsIntersectLine(const QLineF &line) const -> bool;
2022-08-13 18:26:55 +02:00
static auto IsPointOnCurve(const QVector<QPointF> &points, const QPointF &p) -> bool;
auto IsPointOnCurve(const QPointF &p) const -> bool;
2023-07-13 16:49:20 +02:00
static auto SubdividePath(const QVector<QPointF> &points, QPointF p, QVector<QPointF> &sub1, QVector<QPointF> &sub2)
-> bool;
auto ClosestPoint(QPointF scenePoint) const -> QPointF;
2023-07-13 16:49:20 +02:00
virtual auto GetStartAngle() const -> qreal = 0;
virtual auto GetEndAngle() const -> qreal = 0;
2022-08-13 18:26:55 +02:00
auto GetDuplicate() const -> quint32;
void SetDuplicate(quint32 number);
2022-08-13 18:26:55 +02:00
auto GetColor() const -> QString;
void SetColor(const QString &color);
2022-08-13 18:26:55 +02:00
auto GetPenStyle() const -> QString;
void SetPenStyle(const QString &penStyle);
2022-08-13 18:26:55 +02:00
auto GetApproximationScale() const -> qreal;
void SetApproximationScale(qreal value);
2022-08-13 18:26:55 +02:00
static auto PathLength(const QVector<QPointF> &path) -> qreal;
2022-08-13 18:26:55 +02:00
static auto CurveIntersectLine(const QVector<QPointF> &points, const QLineF &line) -> QVector<QPointF>;
static auto CurveIntersectAxis(const QPointF &point, qreal angle, const QVector<QPointF> &curvePoints,
QPointF *intersectionPoint) -> bool;
2023-07-13 16:49:20 +02:00
virtual auto NameForHistory(const QString &toolName) const -> QString = 0;
2022-08-13 18:26:55 +02:00
virtual auto DirectionArrows() const -> QVector<DirectionArrow>;
static auto ShowDirection(const QVector<DirectionArrow> &arrows, qreal width) -> QPainterPath;
2022-08-13 18:26:55 +02:00
static auto LengthCurveDirectionArrow() -> qreal;
2020-11-04 10:01:20 +01:00
2022-08-13 18:26:55 +02:00
void SetAliasSuffix(const QString &aliasSuffix) override;
2022-09-02 16:14:03 +02:00
static constexpr qreal minLength = MmToPixel(1.);
2022-09-01 09:11:44 +02:00
protected:
2023-07-13 16:49:20 +02:00
virtual void CreateName() = 0;
virtual void CreateAlias() = 0;
private:
QSharedDataPointer<VAbstractCurveData> d;
2022-08-13 18:26:55 +02:00
static auto FromBegin(const QVector<QPointF> &points, const QPointF &begin, bool *ok = nullptr) -> QVector<QPointF>;
static auto ToEnd(const QVector<QPointF> &points, const QPointF &end, bool *ok = nullptr) -> QVector<QPointF>;
2014-06-25 16:08:12 +02:00
};
2021-09-25 16:18:33 +02:00
QT_WARNING_POP
2022-08-12 17:50:13 +02:00
Q_DECLARE_TYPEINFO(VAbstractCurve, Q_MOVABLE_TYPE); // NOLINT
2014-06-25 16:08:12 +02:00
#endif // VABSTRACTCURVE_H