2016-05-12 21:11:21 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vsimplecurve.h
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 7 5, 2016
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
2017-10-05 11:20:01 +02:00
|
|
|
** This source code is part of the Valentina project, a pattern making
|
2016-05-12 21:11:21 +02:00
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2016 Valentina project
|
2020-01-31 07:00:05 +01:00
|
|
|
** <https://gitlab.com/smart-pattern/valentina> All Rights Reserved.
|
2016-05-12 21:11: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 VSIMPLECURVE_H
|
|
|
|
#define VSIMPLECURVE_H
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QColor>
|
|
|
|
#include <QGraphicsItem>
|
|
|
|
#include <QMetaObject>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QSharedPointer>
|
|
|
|
#include <QString>
|
|
|
|
#include <QVariant>
|
|
|
|
#include <QtGlobal>
|
|
|
|
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "../vmisc/def.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "vabstractsimple.h"
|
2017-05-16 12:07:53 +02:00
|
|
|
#include "vcurvepathitem.h"
|
2016-05-12 21:11:21 +02:00
|
|
|
|
|
|
|
class VAbstractCurve;
|
2016-08-08 13:44:49 +02:00
|
|
|
template <class T> class QSharedPointer;
|
2016-05-12 21:11:21 +02:00
|
|
|
|
2017-05-16 12:07:53 +02:00
|
|
|
class VSimpleCurve : public VAbstractSimple, public VCurvePathItem
|
2016-05-12 21:11:21 +02:00
|
|
|
{
|
2022-08-12 17:50:13 +02:00
|
|
|
Q_OBJECT // NOLINT
|
2023-08-05 16:51:23 +02:00
|
|
|
|
2016-05-12 21:11:21 +02:00
|
|
|
public:
|
2017-06-16 13:53:08 +02:00
|
|
|
VSimpleCurve(quint32 id, const QSharedPointer<VAbstractCurve> &curve, QObject *parent = nullptr);
|
2023-08-05 16:51:23 +02:00
|
|
|
~VSimpleCurve() override = default;
|
2016-05-12 21:11:21 +02:00
|
|
|
|
2023-08-05 16:51:23 +02:00
|
|
|
auto type() const -> int override { return Type; }
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
Type = UserType + static_cast<int>(Vis::SimpleCurve)
|
|
|
|
};
|
2016-05-12 21:11:21 +02:00
|
|
|
|
2017-06-16 13:53:08 +02:00
|
|
|
void RefreshGeometry(const QSharedPointer<VAbstractCurve> &curve);
|
2016-05-12 21:11:21 +02:00
|
|
|
signals:
|
|
|
|
/**
|
|
|
|
* @brief Choosed send id when clicked.
|
|
|
|
* @param id point id.
|
|
|
|
*/
|
|
|
|
void Choosed(quint32 id);
|
|
|
|
void Selected(bool selected, quint32 id);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void CurveChoosed();
|
|
|
|
void CurveSelected(bool selected);
|
|
|
|
|
|
|
|
protected:
|
2023-08-05 16:51:23 +02:00
|
|
|
void mousePressEvent(QGraphicsSceneMouseEvent *event) override;
|
|
|
|
void mouseReleaseEvent(QGraphicsSceneMouseEvent *event) override;
|
|
|
|
void hoverEnterEvent(QGraphicsSceneHoverEvent *event) override;
|
|
|
|
void hoverLeaveEvent(QGraphicsSceneHoverEvent *event) override;
|
|
|
|
auto itemChange(GraphicsItemChange change, const QVariant &value) -> QVariant override;
|
|
|
|
void contextMenuEvent(QGraphicsSceneContextMenuEvent *event) override;
|
|
|
|
void keyReleaseEvent(QKeyEvent *event) override;
|
|
|
|
void ScalePenWidth() override;
|
2016-05-12 21:11:21 +02:00
|
|
|
|
|
|
|
private:
|
2022-08-12 17:50:13 +02:00
|
|
|
Q_DISABLE_COPY_MOVE(VSimpleCurve) // NOLINT
|
2016-05-12 21:11:21 +02:00
|
|
|
|
|
|
|
QSharedPointer<VAbstractCurve> m_curve;
|
2016-05-25 10:16:21 +02:00
|
|
|
bool m_isHovered;
|
2016-05-12 21:11:21 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VSIMPLECURVE_H
|