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 varc.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-05 10:37:56 +02:00
|
|
|
#ifndef VARC_H
|
|
|
|
#define VARC_H
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <qcompilerdetection.h>
|
|
|
|
#include <QCoreApplication>
|
|
|
|
#include <QPointF>
|
|
|
|
#include <QSharedDataPointer>
|
|
|
|
#include <QString>
|
|
|
|
#include <QTypeInfo>
|
|
|
|
#include <QVector>
|
|
|
|
#include <QtGlobal>
|
|
|
|
|
2016-04-10 16:40:55 +02:00
|
|
|
#include "vabstractarc.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "vgeometrydef.h"
|
2013-12-29 17:48:57 +01:00
|
|
|
#include "vpointf.h"
|
2014-06-08 20:10:57 +02:00
|
|
|
|
2014-08-20 14:23:21 +02:00
|
|
|
class VArcData;
|
2013-08-05 10:37:56 +02:00
|
|
|
|
|
|
|
/**
|
2014-01-21 12:42:28 +01:00
|
|
|
* @brief VArc class for anticlockwise arc.
|
2013-08-05 10:37:56 +02:00
|
|
|
*/
|
2016-04-10 16:40:55 +02:00
|
|
|
class VArc: public VAbstractArc
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-30 20:33:30 +01:00
|
|
|
Q_DECLARE_TR_FUNCTIONS(VArc)
|
2013-08-05 10:37:56 +02:00
|
|
|
public:
|
2014-02-26 09:18:59 +01:00
|
|
|
VArc ();
|
2016-04-10 16:40:55 +02:00
|
|
|
VArc (const VPointF ¢er, qreal radius, const QString &formulaRadius, qreal f1, const QString &formulaF1,
|
|
|
|
qreal f2, const QString &formulaF2, quint32 idObject = 0, Draw mode = Draw::Calculation);
|
|
|
|
VArc (const VPointF ¢er, qreal radius, qreal f1, qreal f2);
|
|
|
|
VArc (qreal length, const QString &formulaLength, const VPointF ¢er, qreal radius, const QString &formulaRadius,
|
|
|
|
qreal f1, const QString &formulaF1, quint32 idObject = 0, Draw mode = Draw::Calculation);
|
|
|
|
VArc (qreal length, const VPointF ¢er, qreal radius, qreal f1);
|
2014-02-26 09:18:59 +01:00
|
|
|
VArc(const VArc &arc);
|
2016-04-10 13:40:04 +02:00
|
|
|
VArc Rotate(const QPointF &originPoint, qreal degrees, const QString &prefix = QString()) const;
|
2016-09-10 17:18:11 +02:00
|
|
|
VArc Flip(const QLineF &axis, const QString &prefix = QString()) const;
|
2016-10-04 16:34:37 +02:00
|
|
|
VArc Move(qreal length, qreal angle, const QString &prefix = QString()) const;
|
2018-06-26 14:53:48 +02:00
|
|
|
virtual ~VArc() override;
|
2014-08-20 14:23:21 +02:00
|
|
|
|
2017-04-19 12:27:17 +02:00
|
|
|
VArc& operator= (const VArc &arc);
|
|
|
|
#ifdef Q_COMPILER_RVALUE_REFS
|
2019-12-30 16:13:18 +01:00
|
|
|
VArc(VArc &&arc) Q_DECL_NOTHROW;
|
2019-12-30 12:00:57 +01:00
|
|
|
VArc &operator=(VArc &&arc) Q_DECL_NOTHROW;
|
2017-04-19 12:27:17 +02:00
|
|
|
#endif
|
|
|
|
|
2016-04-10 16:40:55 +02:00
|
|
|
QString GetFormulaRadius () const;
|
|
|
|
void SetFormulaRadius (const QString &formula, qreal value);
|
|
|
|
qreal GetRadius () const;
|
2014-09-01 16:34:45 +02:00
|
|
|
|
2018-06-26 14:53:48 +02:00
|
|
|
virtual qreal GetLength () const override;
|
2014-09-01 16:34:45 +02:00
|
|
|
|
2016-04-10 16:40:55 +02:00
|
|
|
QPointF GetP1() const;
|
|
|
|
QPointF GetP2 () const;
|
2014-09-01 16:34:45 +02:00
|
|
|
|
2018-06-26 14:53:48 +02:00
|
|
|
virtual QVector<QPointF> GetPoints () const override;
|
2014-09-01 16:34:45 +02:00
|
|
|
|
2019-04-03 08:37:43 +02:00
|
|
|
QPointF CutArc (qreal length, VArc &arc1, VArc &arc2) const;
|
|
|
|
QPointF CutArc (qreal length) const;
|
2016-02-15 15:30:48 +01:00
|
|
|
protected:
|
2018-06-26 14:53:48 +02:00
|
|
|
virtual void CreateName() override;
|
|
|
|
virtual void FindF2(qreal length) override;
|
2013-08-05 10:37:56 +02:00
|
|
|
private:
|
2014-08-20 14:23:21 +02:00
|
|
|
QSharedDataPointer<VArcData> d;
|
2015-06-09 12:21:10 +02:00
|
|
|
|
|
|
|
qreal MaxLength() const;
|
2013-08-05 10:37:56 +02:00
|
|
|
};
|
|
|
|
|
2015-11-25 19:56:17 +01:00
|
|
|
Q_DECLARE_TYPEINFO(VArc, Q_MOVABLE_TYPE);
|
|
|
|
|
2013-08-05 10:37:56 +02:00
|
|
|
#endif // VARC_H
|