valentina/src/app/puzzle/vpuzzlegraphicspiece.h

90 lines
2.8 KiB
C
Raw Normal View History

2020-05-05 07:44:20 +02:00
/************************************************************************
**
** @file vpuzzlegraphicspiece.h
** @author Ronan Le Tiec
** @date 4 5, 2020
**
** @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) 2020 Valentina project
** <https://gitlab.com/smart-pattern/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 VPUZZLEGRAPHICSPIECE_H
#define VPUZZLEGRAPHICSPIECE_H
#include <QGraphicsItem>
2020-05-05 17:40:36 +02:00
class VPuzzlePiece;
2020-05-05 07:44:20 +02:00
2020-05-05 17:40:36 +02:00
class VPuzzleGraphicsPiece : public QGraphicsObject
2020-05-05 07:44:20 +02:00
{
2020-05-05 17:40:36 +02:00
Q_OBJECT
2020-05-05 07:44:20 +02:00
public:
VPuzzleGraphicsPiece(VPuzzlePiece *piece, QGraphicsItem *parent = nullptr);
~VPuzzleGraphicsPiece();
void Init();
/**
* @brief GetPiece Returns the piece that corresponds to the graphics piece
* @return the piece
*/
VPuzzlePiece* GetPiece();
2020-05-05 17:40:36 +02:00
public slots:
/**
* @brief on_PieceSelectionChanged When the piece selection was changed
*/
void on_PieceSelectionChanged();
/**
* @brief on_PiecePositionChanged When the piece position was changed
*/
void on_PiecePositionChanged();
2020-05-05 07:44:20 +02:00
protected:
QRectF boundingRect() const override;
QPainterPath shape() const override;
void paint(QPainter *painter, const QStyleOptionGraphicsItem *item, QWidget *widget) override;
void mousePressEvent(QGraphicsSceneMouseEvent * event) override;
void mouseReleaseEvent(QGraphicsSceneMouseEvent *event) override;
2020-05-05 17:40:36 +02:00
QVariant itemChange(GraphicsItemChange change, const QVariant &value) override;
2020-05-05 07:44:20 +02:00
void contextMenuEvent(QGraphicsSceneContextMenuEvent *event) override;
private slots:
/**
* @brief on_ActionPieceMovedToLayer Slot called when the piece is moved via the
* context menu to anoter layer
*/
void on_ActionPieceMovedToLayer();
2020-05-05 07:44:20 +02:00
private:
Q_DISABLE_COPY(VPuzzleGraphicsPiece)
VPuzzlePiece *m_piece;
QPainterPath m_cuttingLine;
QPainterPath m_seamLine;
QPainterPath m_grainline;
2020-05-05 07:44:20 +02:00
};
#endif // VPUZZLEGRAPHICSPIECE_H