90 lines
3.1 KiB
C++
90 lines
3.1 KiB
C++
/************************************************************************
|
|
**
|
|
** @file vabstractcubicbezierpath.h
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
** @date 16 3, 2016
|
|
**
|
|
** @brief
|
|
** @copyright
|
|
** This source code is part of the Valentina project, a pattern making
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
** Copyright (C) 2016 Valentina project
|
|
** <https://gitlab.com/smart-pattern/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 VABSTRACTCUBICBEZIERPATH_H
|
|
#define VABSTRACTCUBICBEZIERPATH_H
|
|
|
|
#include <qcompilerdetection.h>
|
|
#include <QCoreApplication>
|
|
#include <QPointF>
|
|
#include <QString>
|
|
#include <QVector>
|
|
#include <QtGlobal>
|
|
|
|
#include "vabstractbezier.h"
|
|
#include "vgeometrydef.h"
|
|
|
|
class VPointF;
|
|
class VSpline;
|
|
class VSplinePoint;
|
|
|
|
QT_WARNING_PUSH
|
|
QT_WARNING_DISABLE_GCC("-Wsuggest-final-types")
|
|
QT_WARNING_DISABLE_GCC("-Wsuggest-final-methods")
|
|
|
|
class VAbstractCubicBezierPath : public VAbstractBezier
|
|
{
|
|
Q_DECLARE_TR_FUNCTIONS(VAbstractCubicBezierPath) // NOLINT
|
|
public:
|
|
explicit VAbstractCubicBezierPath(const GOType &type, const quint32 &idObject = NULL_ID,
|
|
const Draw &mode = Draw::Calculation);
|
|
VAbstractCubicBezierPath(const VAbstractCubicBezierPath &curve) = default;
|
|
auto operator= (const VAbstractCubicBezierPath &curve) -> VAbstractCubicBezierPath&;
|
|
~VAbstractCubicBezierPath() override;
|
|
|
|
virtual auto CountSubSpl() const -> qint32 =0;
|
|
virtual auto CountPoints() const -> qint32 =0;
|
|
virtual void Clear() =0;
|
|
virtual auto GetSpline(qint32 index) const -> VSpline =0;
|
|
virtual auto GetSplinePath() const -> QVector<VSplinePoint> =0;
|
|
|
|
auto GetPath() const -> QPainterPath override;
|
|
auto GetPoints() const -> QVector<QPointF> override;
|
|
auto GetLength() const -> qreal override;
|
|
|
|
auto DirectionArrows() const -> QVector<DirectionArrow> override;
|
|
|
|
auto Segment(const QPointF &p) const -> int;
|
|
|
|
auto CutSplinePath(qreal length, qint32 &p1, qint32 &p2, QPointF &spl1p2, QPointF &spl1p3, QPointF &spl2p2,
|
|
QPointF &spl2p3, const QString &pointName) const -> QPointF;
|
|
|
|
auto NameForHistory(const QString &toolName) const -> QString override;
|
|
|
|
protected:
|
|
void CreateName() override;
|
|
void CreateAlias() override;
|
|
|
|
virtual auto FirstPoint() const -> VPointF =0;
|
|
virtual auto LastPoint() const -> VPointF =0;
|
|
};
|
|
|
|
QT_WARNING_POP
|
|
|
|
#endif // VABSTRACTCUBICBEZIERPATH_H
|