valentina/src/app/puzzle/vpgraphicssheet.h

59 lines
1.8 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>
#include "vpsheet.h"
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:
explicit VPGraphicsSheet(VPSheet *sheet, QGraphicsItem *parent = nullptr);
2020-05-23 14:48:31 +02:00
~VPGraphicsSheet();
2020-05-05 07:44:20 +02:00
QRectF boundingRect() const override;
void paint(QPainter *painter, const QStyleOptionGraphicsItem *item, QWidget *widget) override;
QRectF GetSheetRect() const;
2020-05-05 07:44:20 +02:00
QRectF GetMarginsRect() const;
private:
2020-05-23 14:48:31 +02:00
Q_DISABLE_COPY(VPGraphicsSheet)
2020-05-05 07:44:20 +02:00
VPSheet *m_sheet{nullptr};
2020-05-05 07:44:20 +02:00
QRectF m_boundingRect;
};
2020-05-23 14:48:31 +02:00
#endif // VPGRAPHICSSHEET_H