2020-05-05 07:44:20 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vpuzzlemaingraphicsview.h
|
|
|
|
** @author Ronan Le Tiec
|
|
|
|
** @date 3 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 VPUZZLEMAINGRAPHICSVIEW_H
|
|
|
|
#define VPUZZLEMAINGRAPHICSVIEW_H
|
|
|
|
|
2020-05-23 14:48:31 +02:00
|
|
|
#include "vpgraphicssheet.h"
|
2020-05-05 07:44:20 +02:00
|
|
|
#include "vpuzzlegraphicspiece.h"
|
2020-05-11 16:39:54 +02:00
|
|
|
#include "../vwidgets/vmaingraphicsview.h"
|
2020-05-05 07:44:20 +02:00
|
|
|
|
2020-05-11 16:39:54 +02:00
|
|
|
class VMainGraphicsScene;
|
2020-05-05 07:44:20 +02:00
|
|
|
|
|
|
|
|
2020-05-11 16:39:54 +02:00
|
|
|
class VPuzzleMainGraphicsView : public VMainGraphicsView
|
2020-05-05 07:44:20 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
VPuzzleMainGraphicsView(VPuzzleLayout *layout, QWidget *parent);
|
2020-05-11 16:39:54 +02:00
|
|
|
~VPuzzleMainGraphicsView() = default;
|
2020-05-05 07:44:20 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief RefreshLayout Refreshes the rectangles for the layout border and the margin
|
|
|
|
*/
|
|
|
|
void RefreshLayout();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void dragEnterEvent(QDragEnterEvent *event) override;
|
|
|
|
void dragMoveEvent(QDragMoveEvent *event) override;
|
|
|
|
void dragLeaveEvent(QDragLeaveEvent *event) override;
|
|
|
|
void dropEvent(QDropEvent *event) override;
|
|
|
|
|
2020-05-08 23:49:41 +02:00
|
|
|
void keyPressEvent(QKeyEvent *event) override;
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
/**
|
2020-05-11 16:39:54 +02:00
|
|
|
* @brief on_PieceMovedToLayer The slot is called when the given piece was moved from the given layer to the other
|
|
|
|
* given layer
|
2020-05-08 23:49:41 +02:00
|
|
|
* @param piece the piece that was moved
|
|
|
|
* @param layerBefore the layer before the move
|
|
|
|
* @param layerAfter the layer after the move
|
|
|
|
*/
|
|
|
|
void on_PieceMovedToLayer(VPuzzlePiece *piece, VPuzzleLayer *layerBefore, VPuzzleLayer *layerAfter);
|
2020-05-05 07:44:20 +02:00
|
|
|
|
2020-05-09 09:00:27 +02:00
|
|
|
/**
|
|
|
|
* @brief on_SceneSelectionChanged Slot is called when the scene selection has changed
|
|
|
|
*/
|
|
|
|
void on_SceneSelectionChanged();
|
|
|
|
|
2020-05-05 07:44:20 +02:00
|
|
|
private:
|
|
|
|
Q_DISABLE_COPY(VPuzzleMainGraphicsView)
|
|
|
|
|
2020-05-11 16:39:54 +02:00
|
|
|
VMainGraphicsScene *m_scene{nullptr};
|
2020-05-05 17:40:36 +02:00
|
|
|
|
2020-05-23 14:48:31 +02:00
|
|
|
VPGraphicsSheet *m_graphicsSheet{nullptr};
|
2020-05-08 23:49:41 +02:00
|
|
|
VPuzzleLayout *m_layout{nullptr};
|
|
|
|
|
2020-05-11 16:39:54 +02:00
|
|
|
QList<VPuzzleGraphicsPiece*> m_graphicsPieces{};
|
2020-05-05 17:40:36 +02:00
|
|
|
|
2020-05-05 07:44:20 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VPUZZLEMAINGRAPHICVIEW_H
|