2016-04-10 16:40:55 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file VAbstractArcData.h
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 10 4, 2016
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2016 Valentina project
|
|
|
|
** <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 VABSTRACTARC_P_H
|
|
|
|
#define VABSTRACTARC_P_H
|
|
|
|
|
|
|
|
#include <QSharedData>
|
|
|
|
#include "vgeometrydef.h"
|
|
|
|
#include "../vmisc/vabstractapplication.h"
|
2016-08-06 20:42:40 +02:00
|
|
|
#include "../vmisc/diagnostic.h"
|
2016-04-10 16:40:55 +02:00
|
|
|
#include "vpointf.h"
|
|
|
|
|
2016-08-06 20:42:40 +02:00
|
|
|
QT_WARNING_PUSH
|
|
|
|
QT_WARNING_DISABLE_GCC("-Weffc++")
|
2016-04-10 16:40:55 +02:00
|
|
|
|
|
|
|
class VAbstractArcData : public QSharedData
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
VAbstractArcData();
|
|
|
|
VAbstractArcData(const VPointF ¢er, qreal f1, const QString &formulaF1, qreal f2, const QString &formulaF2);
|
|
|
|
VAbstractArcData(const QString &formulaLength, VPointF center, qreal f1, QString formulaF1);
|
|
|
|
VAbstractArcData(const VPointF ¢er, qreal f1);
|
|
|
|
VAbstractArcData(const VPointF ¢er, qreal f1, qreal f2);
|
|
|
|
VAbstractArcData(const VAbstractArcData &arc);
|
|
|
|
virtual ~VAbstractArcData();
|
|
|
|
|
|
|
|
/** @brief f1 start angle in degree. */
|
|
|
|
qreal f1;
|
|
|
|
|
|
|
|
/** @brief formulaF1 formula for start angle. */
|
|
|
|
QString formulaF1;
|
|
|
|
|
|
|
|
/** @brief f2 end angle in degree. */
|
|
|
|
qreal f2;
|
|
|
|
|
|
|
|
/** @brief formulaF2 formula for end angle. */
|
|
|
|
QString formulaF2;
|
|
|
|
|
|
|
|
/** @brief center center point of arc. */
|
|
|
|
VPointF center;
|
|
|
|
|
|
|
|
bool isFlipped;
|
|
|
|
|
|
|
|
QString formulaLength;
|
|
|
|
|
|
|
|
private:
|
|
|
|
VAbstractArcData &operator=(const VAbstractArcData &) Q_DECL_EQ_DELETE;
|
|
|
|
};
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VAbstractArcData::VAbstractArcData()
|
|
|
|
: f1(0),
|
|
|
|
formulaF1(),
|
|
|
|
f2(0),
|
|
|
|
formulaF2(),
|
|
|
|
center(),
|
|
|
|
isFlipped(false),
|
|
|
|
formulaLength()
|
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VAbstractArcData::VAbstractArcData(const VPointF ¢er, qreal f1, const QString &formulaF1, qreal f2,
|
|
|
|
const QString &formulaF2)
|
|
|
|
: f1(f1),
|
|
|
|
formulaF1(formulaF1),
|
|
|
|
f2(f2),
|
|
|
|
formulaF2(formulaF2),
|
|
|
|
center(center),
|
|
|
|
isFlipped(false),
|
|
|
|
formulaLength()
|
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VAbstractArcData::VAbstractArcData(const QString &formulaLength, VPointF center, qreal f1, QString formulaF1)
|
|
|
|
: f1(f1),
|
|
|
|
formulaF1(formulaF1),
|
|
|
|
f2(0),
|
|
|
|
formulaF2("0"),
|
|
|
|
center(center),
|
|
|
|
isFlipped(false),
|
|
|
|
formulaLength(formulaLength)
|
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VAbstractArcData::VAbstractArcData(const VPointF ¢er, qreal f1)
|
|
|
|
: f1(f1),
|
|
|
|
formulaF1(QString().number(f1)),
|
|
|
|
f2(0),
|
|
|
|
formulaF2("0"),
|
|
|
|
center(center),
|
|
|
|
isFlipped(false),
|
|
|
|
formulaLength()
|
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VAbstractArcData::VAbstractArcData(const VPointF ¢er, qreal f1, qreal f2)
|
|
|
|
: f1(f1),
|
|
|
|
formulaF1(QString().number(f1)),
|
|
|
|
f2(f2),
|
|
|
|
formulaF2(QString().number(f2)),
|
|
|
|
center(center),
|
|
|
|
isFlipped(false),
|
|
|
|
formulaLength()
|
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VAbstractArcData::VAbstractArcData(const VAbstractArcData &arc)
|
|
|
|
: QSharedData(arc),
|
|
|
|
f1(arc.f1),
|
|
|
|
formulaF1(arc.formulaF1),
|
|
|
|
f2(arc.f2),
|
|
|
|
formulaF2(arc.formulaF2),
|
|
|
|
center(arc.center),
|
|
|
|
isFlipped(arc.isFlipped),
|
|
|
|
formulaLength(arc.formulaLength)
|
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VAbstractArcData::~VAbstractArcData()
|
|
|
|
{}
|
|
|
|
|
2016-08-06 20:42:40 +02:00
|
|
|
QT_WARNING_POP
|
|
|
|
|
2016-04-10 16:40:55 +02:00
|
|
|
#endif // VABSTRACTARCDATA_H
|