valentina/src/app/puzzle/vpcarrouselpiece.h

98 lines
2.7 KiB
C
Raw Normal View History

2020-04-26 12:09:28 +02:00
/************************************************************************
**
2020-05-23 14:36:35 +02:00
** @file vpcarrouselpiece.h
2020-04-26 12:09:28 +02:00
** @author Ronan Le Tiec
** @date 25 4, 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/>.
**
*************************************************************************/
2020-05-23 14:36:35 +02:00
#ifndef VPCARROUSELPIECE_H
#define VPCARROUSELPIECE_H
2020-04-26 12:09:28 +02:00
#include <QFrame>
2020-04-26 12:09:28 +02:00
#include <QLabel>
2020-04-26 15:36:20 +02:00
#include <QGraphicsView>
#include <QMouseEvent>
2020-04-26 12:09:28 +02:00
#include "vpuzzlepiece.h"
#include "vpcarrouselpiecepreview.h"
2020-04-26 12:09:28 +02:00
2020-04-26 15:36:20 +02:00
2020-05-23 14:33:02 +02:00
class VPCarrouselPieceList;
2020-05-23 14:36:35 +02:00
class VPCarrouselPiece : public QFrame
2020-04-26 12:09:28 +02:00
{
Q_OBJECT
public:
2020-05-23 15:29:57 +02:00
explicit VPCarrouselPiece(VPuzzlePiece *piece, VPCarrouselPieceList *carrouselPieceList);
2020-05-23 14:36:35 +02:00
~VPCarrouselPiece();
2020-04-26 12:09:28 +02:00
void Init();
void Refresh();
2020-05-23 15:29:57 +02:00
2020-04-26 22:32:08 +02:00
/**
* @brief CleanPiecesPreview fitInView of the qGraphicsView of the pieces works properly
2020-05-23 15:29:57 +02:00
* only when the piece is in place in the piece list and we call it from the piece list.
2020-04-26 22:32:08 +02:00
*/
void CleanPreview();
2020-04-26 12:09:28 +02:00
/**
2020-05-23 14:36:35 +02:00
* @brief GetPiece Returns the corresponding layout piece
* @return the corresponding layout piece
*/
VPuzzlePiece * GetPiece();
2020-04-26 12:09:28 +02:00
public slots:
2020-05-05 17:40:36 +02:00
void on_PieceSelectionChanged();
2020-04-26 12:09:28 +02:00
protected:
void mousePressEvent(QMouseEvent *event) override;
2020-05-05 07:44:20 +02:00
void mouseMoveEvent(QMouseEvent *event) override;
void contextMenuEvent(QContextMenuEvent *event) override;
private slots:
/**
2020-05-23 14:43:57 +02:00
* @brief on_ActionPieceMovedToPieceList Slot called when the piece is moved via the
* context menu to anoter piece list
*/
2020-05-23 14:43:57 +02:00
void on_ActionPieceMovedToPieceList();
2020-04-26 12:09:28 +02:00
private:
2020-05-23 14:36:35 +02:00
Q_DISABLE_COPY(VPCarrouselPiece)
2020-04-26 12:09:28 +02:00
VPuzzlePiece *m_piece;
VPCarrouselPieceList *m_carrouselPieceList;
QLabel *m_label{nullptr};
VPCarrouselPiecePreview *m_piecePreview{nullptr};
2020-05-05 07:44:20 +02:00
QPoint m_dragStart;
2020-04-26 12:09:28 +02:00
private slots:
};
2020-05-23 14:36:35 +02:00
#endif // VPCARROUSELPIECE_H