/************************************************************************ ** ** @file vpgraphicspiece.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 ** 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 . ** *************************************************************************/ #ifndef VPGRAPHICSPIECE_H #define VPGRAPHICSPIECE_H #include #include class VPPiece; class VPGraphicsPiece : public QGraphicsObject { Q_OBJECT public: explicit VPGraphicsPiece(VPPiece *piece, QGraphicsItem *parent = nullptr); ~VPGraphicsPiece() = default; void Init(); /** * @brief GetPiece Returns the piece that corresponds to the graphics piece * @return the piece */ auto GetPiece() -> VPPiece*; virtual int type() const override {return Type;} enum { Type = UserType + 1}; public slots: /** * @brief on_PieceSelectionChanged Slot called when the piece selection was changed */ void on_PieceSelectionChanged(); /** * @brief on_PiecePositionChanged Slot called when the piece position was changed */ void on_PiecePositionChanged(); /** * @brief on_PieceRotationChanged Slot called when the piece rotation was changed */ void on_PieceRotationChanged(); /** * @brief on_PiecePropertiesChanged Slot called when the showSeamline / mirrored was changed */ void on_PiecePropertiesChanged(); protected: auto boundingRect() const -> QRectF override; auto shape() const -> QPainterPath override; void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) override; void mousePressEvent(QGraphicsSceneMouseEvent * event) override; void mouseMoveEvent(QGraphicsSceneMouseEvent * event) override; void mouseReleaseEvent(QGraphicsSceneMouseEvent *event) override; void hoverMoveEvent(QGraphicsSceneHoverEvent *event) override; auto itemChange(GraphicsItemChange change, const QVariant &value) -> QVariant override; void contextMenuEvent(QGraphicsSceneContextMenuEvent *event) override; private: Q_DISABLE_COPY(VPGraphicsPiece) VPPiece *m_piece; QPainterPath m_cuttingLine{}; QPainterPath m_seamLine{}; QPainterPath m_grainline{}; QPainterPath m_passmarks{}; QVector m_internalPaths{}; QVector m_internalPathsPenStyle{}; QVector m_placeLabels{}; QPointF m_rotationStartPoint{}; QCursor m_rotateCursor{}; }; #endif // VPGRAPHICSPIECE_H