valentina/src/app/puzzle/vpmaingraphicsview.h

121 lines
3.4 KiB
C
Raw Normal View History

2020-05-05 07:44:20 +02:00
/************************************************************************
**
2020-05-23 15:36:46 +02:00
** @file vpmaingraphicsview.h
2020-05-05 07:44:20 +02:00
** @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/>.
**
*************************************************************************/
2020-05-23 15:36:46 +02:00
#ifndef VPMAINGRAPHICSVIEW_H
#define VPMAINGRAPHICSVIEW_H
2020-05-05 07:44:20 +02:00
2020-05-23 14:48:31 +02:00
#include "vpgraphicssheet.h"
2020-05-23 14:50:22 +02:00
#include "vpgraphicspiece.h"
#include "vptilefactory.h"
#include "vpgraphicstilegrid.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
class VPTileFactory;
2020-05-05 07:44:20 +02:00
2020-05-23 15:36:46 +02:00
class VPMainGraphicsView : public VMainGraphicsView
2020-05-05 07:44:20 +02:00
{
Q_OBJECT
public:
VPMainGraphicsView(VPLayout *layout, VPTileFactory *tileFactory, QWidget *parent);
2020-05-23 15:36:46 +02:00
~VPMainGraphicsView() = default;
2020-05-05 07:44:20 +02:00
/**
* @brief RefreshLayout Refreshes the rectangles for the layout border and the margin
*/
void RefreshLayout();
2020-11-14 10:55:57 +01:00
/**
* @brief GetScene Returns the scene of the view
* @return scene of the view
2020-11-14 10:55:57 +01:00
*/
2021-07-31 11:32:23 +02:00
auto GetScene() -> VMainGraphicsScene*;
2020-11-14 10:55:57 +01:00
2020-11-14 12:37:43 +01:00
/**
* @brief PrepareForExport prepares the graphic for an export (i.e hide margin etc)
*/
void PrepareForExport();
/**
* @brief CleanAfterExport cleans the graphic for an export (i.e show margin etc)
*/
void CleanAfterExport();
2021-07-31 11:21:07 +02:00
signals:
void on_SheetRemoved();
2021-07-30 13:49:38 +02:00
public slots:
/**
* @brief on_PieceSheetChanged The slot is called when the given piece was moved from the given piece list to
* the other given piece list
* @param piece the piece that was moved
*/
void on_PieceSheetChanged(VPPiece *piece);
2021-07-31 11:21:07 +02:00
void RefreshPieces();
2020-05-05 07:44:20 +02:00
protected:
void dragEnterEvent(QDragEnterEvent *event) override;
void dragMoveEvent(QDragMoveEvent *event) override;
void dragLeaveEvent(QDragLeaveEvent *event) override;
void dropEvent(QDropEvent *event) override;
void keyPressEvent(QKeyEvent *event) override;
2021-07-31 11:21:07 +02:00
void contextMenuEvent(QContextMenuEvent *event) override;
void drawTilesLine();
2020-05-05 07:44:20 +02:00
private:
2020-05-23 15:36:46 +02:00
Q_DISABLE_COPY(VPMainGraphicsView)
2020-05-05 07:44:20 +02:00
2021-07-31 11:21:07 +02:00
VMainGraphicsScene *m_scene;
2020-05-05 17:40:36 +02:00
2020-05-23 14:48:31 +02:00
VPGraphicsSheet *m_graphicsSheet{nullptr};
VPGraphicsTileGrid *m_graphicsTileGrid{nullptr};
2021-07-30 13:49:38 +02:00
VPLayout *m_layout;
2020-05-23 14:50:22 +02:00
QList<VPGraphicsPiece*> m_graphicsPieces{};
2020-05-05 17:40:36 +02:00
2020-11-14 17:31:34 +01:00
/**
* variable to hold temporarly hte value of the show tiles
*/
bool m_showTilesTmp{false};
/**
* variable to hold temporarly hte value of the show grid
*/
bool m_showGridTmp{false};
2020-05-05 07:44:20 +02:00
};
2020-05-23 15:36:46 +02:00
#endif // VPMAINGRAPHICSVIEW_H