2015-05-27 12:48:21 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vistoolpointofintersectionarcs.h
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 27 5, 2015
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
2017-10-05 11:20:01 +02:00
|
|
|
** This source code is part of the Valentina project, a pattern making
|
2015-05-27 12:48:21 +02:00
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2015 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 VISTOOLPOINTOFINTERSECTIONARCS_H
|
|
|
|
#define VISTOOLPOINTOFINTERSECTIONARCS_H
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <qcompilerdetection.h>
|
|
|
|
#include <QGraphicsItem>
|
|
|
|
#include <QMetaObject>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
|
|
|
#include <QtGlobal>
|
|
|
|
|
2015-06-18 19:23:24 +02:00
|
|
|
#include "../ifc/xml/vabstractpattern.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "../vmisc/def.h"
|
|
|
|
#include "visline.h"
|
|
|
|
|
2015-05-27 12:48:21 +02:00
|
|
|
class VisToolPointOfIntersectionArcs : public VisLine
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2017-06-16 13:53:08 +02:00
|
|
|
explicit VisToolPointOfIntersectionArcs(const VContainer *data, QGraphicsItem *parent = nullptr);
|
|
|
|
virtual ~VisToolPointOfIntersectionArcs() = default;
|
2015-05-27 12:48:21 +02:00
|
|
|
|
2018-06-26 14:53:48 +02:00
|
|
|
virtual void RefreshGeometry() override;
|
|
|
|
virtual void VisualMode(const quint32 &id) override;
|
2015-05-27 12:48:21 +02:00
|
|
|
|
|
|
|
void setArc1Id(const quint32 &value);
|
|
|
|
void setArc2Id(const quint32 &value);
|
2015-05-30 12:02:20 +02:00
|
|
|
void setCrossPoint(const CrossCirclesPoint &value);
|
2015-05-27 12:48:21 +02:00
|
|
|
|
2018-06-26 14:53:48 +02:00
|
|
|
virtual int type() const override {return Type;}
|
2015-05-30 12:02:20 +02:00
|
|
|
enum { Type = UserType + static_cast<int>(Vis::ToolPointOfIntersectionArcs)};
|
2015-05-27 12:48:21 +02:00
|
|
|
private:
|
|
|
|
Q_DISABLE_COPY(VisToolPointOfIntersectionArcs)
|
2017-06-23 11:25:02 +02:00
|
|
|
quint32 arc1Id;
|
|
|
|
quint32 arc2Id;
|
|
|
|
CrossCirclesPoint crossPoint;
|
|
|
|
VScaledEllipse *point;
|
|
|
|
VCurvePathItem *arc1Path;
|
|
|
|
VCurvePathItem *arc2Path;
|
2015-05-27 12:48:21 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VISTOOLPOINTOFINTERSECTIONARCS_H
|