105 lines
3.4 KiB
C++
105 lines
3.4 KiB
C++
/************************************************************************
|
|
**
|
|
** @file vpgraphicssheet.cpp
|
|
** @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/>.
|
|
**
|
|
*************************************************************************/
|
|
|
|
#include "vpgraphicssheet.h"
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
VPGraphicsSheet::VPGraphicsSheet(VPSheet *sheet, QGraphicsItem *parent):
|
|
QGraphicsItem(parent),
|
|
m_sheet(sheet),
|
|
m_boundingRect(GetSheetRect())
|
|
{
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
VPGraphicsSheet::~VPGraphicsSheet()
|
|
{
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VPGraphicsSheet::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
|
|
{
|
|
Q_UNUSED(widget);
|
|
Q_UNUSED(option);
|
|
|
|
QPen pen(QColor(0,179,255), 1, Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin);
|
|
pen.setCosmetic(true);
|
|
QBrush noBrush(Qt::NoBrush);
|
|
painter->setPen(pen);
|
|
painter->setBrush(noBrush);
|
|
|
|
painter->drawRect(GetMarginsRect());
|
|
|
|
pen.setColor(Qt::black);
|
|
|
|
painter->setPen(pen);
|
|
painter->drawRect(GetSheetRect());
|
|
|
|
m_boundingRect = GetSheetRect();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
QRectF VPGraphicsSheet::GetSheetRect() const
|
|
{
|
|
QPoint topLeft = QPoint(0,0);
|
|
QSizeF size = m_sheet->GetSheetSize();
|
|
if(m_sheet->GetOrientation() == PageOrientation::Landscape)
|
|
{
|
|
size.transpose();
|
|
}
|
|
QRectF rect = QRectF(topLeft, size);
|
|
return rect;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
QRectF VPGraphicsSheet::GetMarginsRect() const
|
|
{
|
|
QMarginsF margins = m_sheet->GetSheetMargins();
|
|
QSizeF size = m_sheet->GetSheetSize();
|
|
|
|
if(m_sheet->GetOrientation() == PageOrientation::Landscape)
|
|
{
|
|
size.transpose();
|
|
}
|
|
|
|
QRectF rect = QRectF(
|
|
QPointF(margins.left(),margins.top()),
|
|
QPointF(size.width()-margins.right(), size.height()-margins.bottom())
|
|
);
|
|
return rect;
|
|
}
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
QRectF VPGraphicsSheet::boundingRect() const
|
|
{
|
|
return m_boundingRect;
|
|
}
|