/************************************************************************ ** ** @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 ** 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 . ** *************************************************************************/ #include "vpgraphicssheet.h" #include "vplayout.h" #include //--------------------------------------------------------------------------------------------------------------------- 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); QRectF sheetRect = GetSheetRect(); if(m_showMargin) { painter->drawRect(GetMarginsRect()); } if(m_showBorder) { pen.setColor(Qt::black); painter->setPen(pen); painter->drawRect(sheetRect); } 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; } //--------------------------------------------------------------------------------------------------------------------- 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; } //--------------------------------------------------------------------------------------------------------------------- void VPGraphicsSheet::SetShowMargin(bool value) { m_showMargin = value; } //--------------------------------------------------------------------------------------------------------------------- void VPGraphicsSheet::SetShowBorder(bool value) { m_showBorder = value; } //--------------------------------------------------------------------------------------------------------------------- QRectF VPGraphicsSheet::boundingRect() const { return m_boundingRect; }