2014-07-15 15:51:15 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
2014-07-21 14:52:15 +02:00
|
|
|
** @file visline.h
|
2014-07-15 15:51:15 +02:00
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
2014-07-21 14:52:15 +02:00
|
|
|
** @date 21 7, 2014
|
2014-07-15 15:51:15 +02:00
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2014-07-15 15:51:15 +02:00
|
|
|
** <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/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
2014-07-21 14:52:15 +02:00
|
|
|
#ifndef VISLINE_H
|
|
|
|
#define VISLINE_H
|
2014-07-15 15:51:15 +02:00
|
|
|
|
2014-08-15 12:48:11 +02:00
|
|
|
#include "visualization.h"
|
2014-07-15 15:51:15 +02:00
|
|
|
#include <QGraphicsLineItem>
|
2014-07-21 14:52:15 +02:00
|
|
|
#include <QPointF>
|
|
|
|
|
2014-07-15 15:51:15 +02:00
|
|
|
class VContainer;
|
|
|
|
|
2014-08-15 12:48:11 +02:00
|
|
|
class VisLine: public Visualization, public QGraphicsLineItem
|
2014-07-15 15:51:15 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2015-10-20 16:32:01 +02:00
|
|
|
explicit VisLine(const VContainer *data, QGraphicsItem *parent = 0);
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual ~VisLine() Q_DECL_OVERRIDE;
|
2014-07-16 19:08:24 +02:00
|
|
|
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual int type() const Q_DECL_OVERRIDE {return Type;}
|
2014-08-26 20:31:28 +02:00
|
|
|
enum { Type = UserType + static_cast<int>(Vis::Line)};
|
2014-07-15 15:51:15 +02:00
|
|
|
protected:
|
2014-07-24 15:26:59 +02:00
|
|
|
qreal CorrectAngle(const qreal &angle) const;
|
|
|
|
QPointF Ray(const QPointF &firstPoint, const qreal &angle) const;
|
|
|
|
QPointF Ray(const QPointF &firstPoint) const;
|
2014-08-14 13:16:02 +02:00
|
|
|
QLineF Axis(const QPointF &p, const qreal &angle) const;
|
|
|
|
QLineF Axis(const QPointF &p1, const QPointF &p2) const;
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual void InitPen() Q_DECL_OVERRIDE;
|
|
|
|
virtual void AddOnScene() Q_DECL_OVERRIDE;
|
2015-06-05 15:43:41 +02:00
|
|
|
|
|
|
|
void DrawRay(QGraphicsLineItem *lineItem, const QPointF &p, const QPointF &pTangent,
|
|
|
|
const QColor &color, Qt::PenStyle style);
|
2014-07-21 14:52:15 +02:00
|
|
|
private:
|
|
|
|
Q_DISABLE_COPY(VisLine)
|
2014-07-15 15:51:15 +02:00
|
|
|
};
|
|
|
|
|
2014-07-21 14:52:15 +02:00
|
|
|
#endif // VISLINE_H
|