2020-05-05 07:44:20 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
2020-05-23 14:48:31 +02:00
|
|
|
** @file vpgraphicssheet.cpp
|
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
|
|
|
#include "vpgraphicssheet.h"
|
2020-11-14 17:31:34 +01:00
|
|
|
#include "vplayout.h"
|
|
|
|
#include <QtMath>
|
2020-05-05 07:44:20 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2020-05-23 17:47:04 +02:00
|
|
|
VPGraphicsSheet::VPGraphicsSheet(VPSheet *sheet, QGraphicsItem *parent):
|
2020-05-05 07:44:20 +02:00
|
|
|
QGraphicsItem(parent),
|
2020-05-23 17:47:04 +02:00
|
|
|
m_sheet(sheet),
|
|
|
|
m_boundingRect(GetSheetRect())
|
2020-05-05 07:44:20 +02:00
|
|
|
{
|
2020-05-08 23:49:41 +02:00
|
|
|
|
2020-05-05 07:44:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2020-05-23 14:48:31 +02:00
|
|
|
VPGraphicsSheet::~VPGraphicsSheet()
|
2020-05-05 07:44:20 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2020-05-23 14:48:31 +02:00
|
|
|
void VPGraphicsSheet::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
|
2020-05-05 07:44:20 +02:00
|
|
|
{
|
|
|
|
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);
|
|
|
|
|
2021-03-14 14:27:45 +01:00
|
|
|
QRectF sheetRect = GetSheetRect();
|
|
|
|
|
2020-11-14 12:37:43 +01:00
|
|
|
if(m_showMargin)
|
|
|
|
{
|
|
|
|
painter->drawRect(GetMarginsRect());
|
|
|
|
}
|
2020-05-05 07:44:20 +02:00
|
|
|
|
2020-11-14 12:37:43 +01:00
|
|
|
if(m_showBorder)
|
|
|
|
{
|
|
|
|
pen.setColor(Qt::black);
|
2020-05-05 07:44:20 +02:00
|
|
|
|
2020-11-14 12:37:43 +01:00
|
|
|
painter->setPen(pen);
|
2021-03-14 14:27:45 +01:00
|
|
|
painter->drawRect(sheetRect);
|
2020-11-14 12:37:43 +01:00
|
|
|
}
|
2020-05-05 07:44:20 +02:00
|
|
|
|
2021-03-14 14:27:45 +01:00
|
|
|
if(m_sheet->GetShowGrid())
|
|
|
|
{
|
|
|
|
pen.setColor(QColor(204,204,204));
|
|
|
|
painter->setPen(pen);
|
|
|
|
|
|
|
|
qreal colWidth = m_sheet->GetGridColWidth();
|
|
|
|
if(colWidth > 0)
|
|
|
|
{
|
|
|
|
qreal colX = colWidth;
|
|
|
|
while (colX < sheetRect.right())
|
|
|
|
{
|
|
|
|
QLineF line = QLineF(colX, 0, colX, sheetRect.bottom());
|
|
|
|
painter->drawLine(line);
|
|
|
|
colX += colWidth;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
qreal rowHeight = m_sheet->GetGridRowHeight();
|
|
|
|
if(rowHeight > 0)
|
|
|
|
{
|
|
|
|
qreal rowY = rowHeight;
|
|
|
|
|
|
|
|
while (rowY < sheetRect.bottom())
|
|
|
|
{
|
|
|
|
QLineF line = QLineF(0, rowY, sheetRect.right(), rowY);
|
|
|
|
painter->drawLine(line);
|
|
|
|
rowY += rowHeight;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m_boundingRect = sheetRect;
|
2020-05-05 07:44:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2020-05-23 17:47:04 +02:00
|
|
|
QRectF VPGraphicsSheet::GetSheetRect() const
|
2020-05-05 07:44:20 +02:00
|
|
|
{
|
2020-06-25 16:59:48 +02:00
|
|
|
QPoint topLeft = QPoint(0,0);
|
|
|
|
QSizeF size = m_sheet->GetSheetSize();
|
|
|
|
if(m_sheet->GetOrientation() == PageOrientation::Landscape)
|
|
|
|
{
|
|
|
|
size.transpose();
|
|
|
|
}
|
|
|
|
QRectF rect = QRectF(topLeft, size);
|
2020-05-05 07:44:20 +02:00
|
|
|
return rect;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2020-05-23 14:48:31 +02:00
|
|
|
QRectF VPGraphicsSheet::GetMarginsRect() const
|
2020-05-05 07:44:20 +02:00
|
|
|
{
|
2020-05-23 17:47:04 +02:00
|
|
|
QMarginsF margins = m_sheet->GetSheetMargins();
|
|
|
|
QSizeF size = m_sheet->GetSheetSize();
|
2020-06-25 16:59:48 +02:00
|
|
|
|
|
|
|
if(m_sheet->GetOrientation() == PageOrientation::Landscape)
|
|
|
|
{
|
|
|
|
size.transpose();
|
|
|
|
}
|
|
|
|
|
2020-05-05 07:44:20 +02:00
|
|
|
QRectF rect = QRectF(
|
|
|
|
QPointF(margins.left(),margins.top()),
|
|
|
|
QPointF(size.width()-margins.right(), size.height()-margins.bottom())
|
|
|
|
);
|
|
|
|
return rect;
|
|
|
|
}
|
|
|
|
|
2020-11-14 12:37:43 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VPGraphicsSheet::SetShowMargin(bool value)
|
|
|
|
{
|
|
|
|
m_showMargin = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VPGraphicsSheet::SetShowBorder(bool value)
|
|
|
|
{
|
|
|
|
m_showBorder = value;
|
|
|
|
}
|
|
|
|
|
2020-05-05 07:44:20 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2020-05-23 14:48:31 +02:00
|
|
|
QRectF VPGraphicsSheet::boundingRect() const
|
2020-05-05 07:44:20 +02:00
|
|
|
{
|
|
|
|
return m_boundingRect;
|
|
|
|
}
|