2014-08-20 14:23:21 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file varc_p.h
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 20 8, 2014
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
2017-10-05 11:20:01 +02:00
|
|
|
** This source code is part of the Valentina project, a pattern making
|
2014-08-20 14:23:21 +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
|
2020-01-31 07:00:05 +01:00
|
|
|
** <https://gitlab.com/smart-pattern/valentina> All Rights Reserved.
|
2014-08-20 14:23:21 +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 VARC_P_H
|
|
|
|
#define VARC_P_H
|
|
|
|
|
|
|
|
#include <QSharedData>
|
2015-05-07 14:31:53 +02:00
|
|
|
#include "vgeometrydef.h"
|
2016-02-28 20:43:23 +01:00
|
|
|
#include "../vmisc/vabstractapplication.h"
|
2016-08-06 20:42:40 +02:00
|
|
|
#include "../vmisc/diagnostic.h"
|
2014-08-20 14:23:21 +02:00
|
|
|
|
2016-08-06 20:42:40 +02:00
|
|
|
QT_WARNING_PUSH
|
|
|
|
QT_WARNING_DISABLE_GCC("-Weffc++")
|
2017-05-30 17:44:16 +02:00
|
|
|
QT_WARNING_DISABLE_GCC("-Wnon-virtual-dtor")
|
2014-08-23 08:18:07 +02:00
|
|
|
|
2014-08-20 14:23:21 +02:00
|
|
|
class VArcData : public QSharedData
|
|
|
|
{
|
|
|
|
public:
|
2016-04-10 16:40:55 +02:00
|
|
|
VArcData();
|
2016-08-21 18:45:16 +02:00
|
|
|
VArcData(qreal radius, const QString &formulaRadius);
|
2016-08-02 14:12:13 +02:00
|
|
|
explicit VArcData(qreal radius);
|
2016-04-10 16:40:55 +02:00
|
|
|
VArcData(const VArcData &arc);
|
2014-09-11 18:52:02 +02:00
|
|
|
virtual ~VArcData();
|
2014-08-20 14:23:21 +02:00
|
|
|
|
|
|
|
/** @brief radius arc radius. */
|
|
|
|
qreal radius;
|
|
|
|
|
|
|
|
/** @brief formulaRadius formula for arc radius. */
|
|
|
|
QString formulaRadius;
|
|
|
|
|
2015-10-31 13:56:28 +01:00
|
|
|
private:
|
2019-07-01 10:33:29 +02:00
|
|
|
Q_DISABLE_ASSIGN(VArcData)
|
2014-08-20 14:23:21 +02:00
|
|
|
};
|
|
|
|
|
2016-04-10 16:40:55 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VArcData::VArcData()
|
|
|
|
: radius(0),
|
|
|
|
formulaRadius(QString())
|
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-08-21 18:45:16 +02:00
|
|
|
VArcData::VArcData(qreal radius, const QString &formulaRadius)
|
2016-04-10 16:40:55 +02:00
|
|
|
: radius(radius),
|
|
|
|
formulaRadius(formulaRadius)
|
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VArcData::VArcData(qreal radius)
|
|
|
|
: radius(radius),
|
|
|
|
formulaRadius(QString().number(qApp->fromPixel(radius)))
|
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VArcData::VArcData(const VArcData &arc)
|
|
|
|
: QSharedData(arc),
|
|
|
|
radius(arc.radius),
|
|
|
|
formulaRadius(arc.formulaRadius)
|
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-09-11 18:52:02 +02:00
|
|
|
VArcData::~VArcData()
|
|
|
|
{}
|
|
|
|
|
2016-08-06 20:42:40 +02:00
|
|
|
QT_WARNING_POP
|
2014-08-23 08:18:07 +02:00
|
|
|
|
2014-08-20 14:23:21 +02:00
|
|
|
#endif // VARC_P_H
|