61172d46c4
--HG-- branch : develop
80 lines
2.4 KiB
C++
80 lines
2.4 KiB
C++
/************************************************************************
|
|
**
|
|
** @file vistooltruedarts.h
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
** @date 23 6, 2015
|
|
**
|
|
** @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) 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 VISTOOLTRUEDARTS_H
|
|
#define VISTOOLTRUEDARTS_H
|
|
|
|
#include <qcompilerdetection.h>
|
|
#include <QGraphicsItem>
|
|
#include <QMetaObject>
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <QtGlobal>
|
|
|
|
#include "../vmisc/def.h"
|
|
#include "visline.h"
|
|
|
|
class VisToolTrueDarts :public VisLine
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit VisToolTrueDarts(const VContainer *data, QGraphicsItem *parent = nullptr);
|
|
virtual ~VisToolTrueDarts() = default;
|
|
|
|
virtual void RefreshGeometry() Q_DECL_OVERRIDE;
|
|
|
|
void setObject2Id(const quint32 &value);
|
|
void setD1PointId(const quint32 &value);
|
|
void setD2PointId(const quint32 &value);
|
|
void setD3PointId(const quint32 &value);
|
|
|
|
virtual int type() const Q_DECL_OVERRIDE {return Type;}
|
|
enum { Type = UserType + static_cast<int>(Vis::ToolTrueDarts)};
|
|
private:
|
|
Q_DISABLE_COPY(VisToolTrueDarts)
|
|
quint32 baseLineP2Id;
|
|
quint32 dartP1Id;
|
|
quint32 dartP2Id;
|
|
quint32 dartP3Id;
|
|
|
|
VScaledEllipse *point1;
|
|
VScaledEllipse *point2;
|
|
VScaledEllipse *baseLineP1;
|
|
VScaledEllipse *baseLineP2;
|
|
VScaledEllipse *dartP1;
|
|
VScaledEllipse *dartP2;
|
|
VScaledEllipse *dartP3;
|
|
|
|
VScaledLine *lineblP1P1;
|
|
VScaledLine *lineblP2P2;
|
|
VScaledLine *p1d2;
|
|
VScaledLine *d2p2;
|
|
};
|
|
|
|
#endif // VISTOOLTRUEDARTS_H
|