valentina/src/app/puzzle/scene/vpmaingraphicsview.h

119 lines
3.5 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
2021-08-17 17:49:28 +02:00
#include "../layout/layoutdef.h"
#include "../vwidgets/vmaingraphicsview.h"
2020-05-05 07:44:20 +02:00
2020-05-11 16:39:54 +02:00
class VMainGraphicsScene;
2021-08-09 14:09:10 +02:00
class VPGraphicsPieceControls;
class VPGraphicsTransformationOrigin;
class VPTileFactory;
2021-08-09 14:09:10 +02:00
class VPGraphicsPiece;
class VPLayout;
class VPGraphicsTileGrid;
class VPGraphicsSheet;
class VPPiece;
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
{
2022-08-12 17:50:13 +02:00
Q_OBJECT // NOLINT
2020-05-05 07:44:20 +02:00
public:
2021-09-06 14:31:19 +02:00
VPMainGraphicsView(const VPLayoutPtr &layout, QWidget *parent);
2022-08-12 17:50:13 +02:00
~VPMainGraphicsView() override = default;
2020-05-05 07:44:20 +02:00
/**
* @brief RefreshLayout Refreshes the rectangles for the layout border and the margin
*/
void RefreshLayout() const;
2020-05-05 07:44:20 +02:00
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
*/
2021-08-17 17:49:28 +02:00
void on_PieceSheetChanged(const VPPiecePtr &piece);
2021-07-30 13:49:38 +02:00
2021-09-06 14:31:19 +02:00
void on_ActiveSheetChanged(const VPSheetPtr &focusedSheet);
void RefreshPieces() const;
2021-07-31 11:21:07 +02:00
2021-09-06 14:31:19 +02:00
signals:
/**
* @brief mouseMove send new mouse position.
* @param scenePos new mouse position.
*/
void mouseMove(const QPointF &scenePos);
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-08-17 17:49:28 +02:00
void keyReleaseEvent(QKeyEvent *event) override;
2021-07-31 11:21:07 +02:00
void contextMenuEvent(QContextMenuEvent *event) override;
void drawTilesLine();
2021-08-09 14:09:10 +02:00
private slots:
void RestoreOrigin() const;
2021-09-06 14:31:19 +02:00
void on_SceneMouseMove(const QPointF &scenePos);
2021-08-09 14:09:10 +02:00
2020-05-05 07:44:20 +02:00
private:
2022-08-12 17:50:13 +02:00
// cppcheck-suppress unknownMacro
Q_DISABLE_COPY_MOVE(VPMainGraphicsView) // NOLINT
2020-05-05 07:44:20 +02:00
2021-08-17 17:49:28 +02:00
VPLayoutWeakPtr m_layout;
2021-08-17 17:49:28 +02:00
bool m_allowChangeMerge{false};
2021-08-30 17:45:27 +02:00
bool m_hasStickyPosition{false};
qreal m_stickyTranslateX{0};
qreal m_stickyTranslateY{0};
2021-08-18 19:33:47 +02:00
void RotatePiecesByAngle(qreal angle);
2021-08-17 17:49:28 +02:00
void TranslatePiecesOn(qreal dx, qreal dy);
2021-08-09 14:09:10 +02:00
2021-09-06 14:31:19 +02:00
void SwitchScene(const VPSheetPtr &sheet);
void ClearSelection() const;
2022-02-18 16:57:41 +01:00
void ZValueMove(int move) const;
2022-08-12 17:50:13 +02:00
void RemovePiece() const;
void MovePiece(QKeyEvent *event);
2020-05-05 07:44:20 +02:00
};
2020-05-23 15:36:46 +02:00
#endif // VPMAINGRAPHICSVIEW_H