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

77 lines
2.3 KiB
C
Raw Normal View History

2020-05-05 07:44:20 +02:00
/************************************************************************
**
2020-05-23 14:48:31 +02:00
** @file vpgraphicssheet.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 14:48:31 +02:00
#ifndef VPGRAPHICSSHEET_H
#define VPGRAPHICSSHEET_H
2020-05-05 07:44:20 +02:00
#include <QGraphicsItem>
#include <QPainter>
2021-08-18 19:33:47 +02:00
#include "../layout/layoutdef.h"
2022-08-12 17:50:13 +02:00
#include "../vmisc/defglobal.h"
2021-08-18 19:33:47 +02:00
2021-08-14 14:19:28 +02:00
class VPLayout;
2020-05-05 07:44:20 +02:00
2020-05-23 14:48:31 +02:00
class VPGraphicsSheet : public QGraphicsItem
2020-05-05 07:44:20 +02:00
{
public:
2021-08-18 19:33:47 +02:00
explicit VPGraphicsSheet(const VPLayoutPtr &layout, QGraphicsItem *parent = nullptr);
2022-08-12 17:50:13 +02:00
~VPGraphicsSheet() override =default;
2020-05-05 07:44:20 +02:00
2021-08-18 19:33:47 +02:00
auto boundingRect() const -> QRectF override;
2020-11-10 15:10:38 +01:00
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) override;
2020-05-05 07:44:20 +02:00
2021-08-18 19:33:47 +02:00
auto GetSheetRect() const -> QRectF;
auto GetMarginsRect() const -> QRectF;
2020-05-05 07:44:20 +02:00
2020-11-14 12:37:43 +01:00
/**
* @brief SetShowMargin Sets Wether we see the margin
2020-11-14 12:37:43 +01:00
* @param value true to show the margin
*/
void SetShowMargin(bool value);
/**
* @brief SetShowBorder Sets whether we see the border of the sheet
2020-11-14 12:37:43 +01:00
* @param value true to show the border
*/
void SetShowBorder(bool value);
2021-09-11 13:01:29 +02:00
void RefreshBoundingRect();
2020-05-05 07:44:20 +02:00
private:
2022-08-12 17:50:13 +02:00
// cppcheck-suppress unknownMacro
Q_DISABLE_COPY_MOVE(VPGraphicsSheet) // NOLINT
2020-05-05 07:44:20 +02:00
2021-08-18 19:33:47 +02:00
VPLayoutWeakPtr m_layout{};
2020-11-14 12:37:43 +01:00
bool m_showMargin{true};
bool m_showBorder{true};
2020-05-05 07:44:20 +02:00
};
2020-05-23 14:48:31 +02:00
#endif // VPGRAPHICSSHEET_H