2015-04-11 13:01:25 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vposter.cpp
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 11 4, 2015
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2015 Valentina project
|
|
|
|
** <https://bitbucket.org/dismine/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 "vposter.h"
|
|
|
|
#include <QPrinter>
|
2016-06-15 12:55:43 +02:00
|
|
|
#include <QGraphicsLineItem>
|
|
|
|
#include <QPen>
|
2015-10-08 19:07:48 +02:00
|
|
|
|
2015-04-15 19:41:23 +02:00
|
|
|
#if QT_VERSION < QT_VERSION_CHECK(5, 1, 0)
|
2015-10-08 19:07:48 +02:00
|
|
|
# include "../vmisc/vmath.h"
|
2015-04-15 19:41:23 +02:00
|
|
|
#else
|
|
|
|
# include <QtMath>
|
|
|
|
#endif
|
2015-04-11 13:01:25 +02:00
|
|
|
|
2015-06-15 13:43:41 +02:00
|
|
|
#include "../vmisc/def.h"
|
2015-04-11 13:01:25 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VPoster::VPoster(const QPrinter *printer)
|
2016-06-15 12:55:43 +02:00
|
|
|
:printer(printer), allowence(static_cast<quint32>(qRound(10./25.4*PrintDPI)))//1 cm
|
2015-04-11 13:01:25 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-06-15 12:55:43 +02:00
|
|
|
QVector<PosterData> VPoster::Calc(const QRect &imageRect, int page) const
|
2015-04-11 13:01:25 +02:00
|
|
|
{
|
2016-06-15 12:55:43 +02:00
|
|
|
QVector<PosterData> poster;
|
2015-04-11 13:01:25 +02:00
|
|
|
|
|
|
|
if (printer == nullptr)
|
|
|
|
{
|
|
|
|
return poster;
|
|
|
|
}
|
|
|
|
|
2016-06-15 12:55:43 +02:00
|
|
|
const int rows = CountRows(imageRect.height());
|
|
|
|
const int columns = CountColumns(imageRect.width());
|
2015-04-11 13:01:25 +02:00
|
|
|
|
|
|
|
for (int i=0; i < rows; i++)
|
|
|
|
{
|
2016-06-01 20:08:36 +02:00
|
|
|
for (int j=0; j< columns; j++)
|
2015-04-11 13:01:25 +02:00
|
|
|
{
|
2016-06-15 12:55:43 +02:00
|
|
|
PosterData data = Cut(i, j, imageRect);
|
|
|
|
data.index = page;
|
|
|
|
data.rows = rows;
|
|
|
|
data.columns = columns;
|
|
|
|
poster.append(data);
|
2015-04-11 13:01:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return poster;
|
|
|
|
}
|
|
|
|
|
2016-06-15 12:55:43 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QVector<QGraphicsItem *> VPoster::Borders(QGraphicsItem *parent, const PosterData &img, int sheets) const
|
|
|
|
{
|
|
|
|
QVector<QGraphicsItem *> data;
|
|
|
|
QPen pen(Qt::NoBrush, 1, Qt::DashLine);
|
|
|
|
pen.setColor(Qt::black);
|
|
|
|
|
|
|
|
const QRect rec = img.rect;
|
|
|
|
if (img.column != 0)
|
|
|
|
{// Left border
|
|
|
|
auto *line = new QGraphicsLineItem(parent);
|
|
|
|
line->setPen(pen);
|
|
|
|
line->setLine(rec.x(), rec.y(), rec.x(), rec.y() + rec.height());
|
|
|
|
data.append(line);
|
|
|
|
|
|
|
|
auto *scissors = new QGraphicsPixmapItem(QPixmap("://scissors_vertical.png"), parent);
|
|
|
|
scissors->setPos(rec.x(), rec.y() + rec.height()-static_cast<int>(allowence));
|
|
|
|
data.append(scissors);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (img.column != img.columns-1)
|
|
|
|
{// Right border
|
|
|
|
auto *line = new QGraphicsLineItem(parent);
|
|
|
|
line->setPen(pen);
|
|
|
|
line->setLine(rec.x() + rec.width()-static_cast<int>(allowence), rec.y(),
|
|
|
|
rec.x() + rec.width()-static_cast<int>(allowence), rec.y() + rec.height());
|
|
|
|
data.append(line);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (img.row != 0)
|
|
|
|
{// Top border
|
|
|
|
auto *line = new QGraphicsLineItem(parent);
|
|
|
|
line->setPen(pen);
|
|
|
|
line->setLine(rec.x(), rec.y(), rec.x() + rec.width(), rec.y());
|
|
|
|
data.append(line);
|
|
|
|
|
|
|
|
auto *scissors = new QGraphicsPixmapItem(QPixmap("://scissors_horizontal.png"), parent);
|
|
|
|
scissors->setPos(rec.x() + rec.width()-static_cast<int>(allowence), rec.y());
|
|
|
|
data.append(scissors);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (img.rows*img.columns > 1)
|
|
|
|
{ // Don't show bottom border if only one page need
|
|
|
|
// Bottom border (mandatory)
|
|
|
|
auto *line = new QGraphicsLineItem(parent);
|
|
|
|
line->setPen(pen);
|
|
|
|
line->setLine(rec.x(), rec.y() + rec.height()-static_cast<int>(allowence),
|
|
|
|
rec.x() + rec.width(), rec.y() + rec.height()-static_cast<int>(allowence));
|
|
|
|
data.append(line);
|
|
|
|
|
|
|
|
if (img.row == img.rows-1)
|
|
|
|
{
|
|
|
|
auto *scissors = new QGraphicsPixmapItem(QPixmap("://scissors_horizontal.png"), parent);
|
|
|
|
scissors->setPos(rec.x() + rec.width()-static_cast<int>(allowence),
|
|
|
|
rec.y() + rec.height()-static_cast<int>(allowence));
|
|
|
|
data.append(scissors);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Labels
|
|
|
|
auto *labels = new QGraphicsTextItem(parent);
|
|
|
|
|
|
|
|
const int layoutX = 15;
|
|
|
|
const int layoutY = 5;
|
|
|
|
labels->setPos(rec.x() + layoutX, rec.y() + rec.height()-static_cast<int>(allowence)+layoutY);
|
|
|
|
labels->setTextWidth(rec.width()-(static_cast<int>(allowence)+layoutX));
|
|
|
|
|
|
|
|
const QString grid = tr("Grid ( %1 , %2 )").arg(img.row+1).arg(img.column+1);
|
|
|
|
const QString page = tr("Page %1 of %2").arg(img.row*(img.columns)+img.column+1).arg(img.rows*img.columns);
|
|
|
|
|
|
|
|
QString sheet;
|
|
|
|
if (sheets > 1)
|
|
|
|
{
|
|
|
|
sheet = tr("Sheet %1 of %2").arg(img.index+1).arg(sheets);
|
|
|
|
}
|
|
|
|
|
|
|
|
labels->setHtml(QString("<table width='100%'>"
|
|
|
|
"<tr>"
|
|
|
|
"<td>%1</td><td align='center'>%2</td><td align='right'>%3</td>"
|
|
|
|
"</tr>"
|
|
|
|
"</table>")
|
|
|
|
.arg(grid, page, sheet));
|
|
|
|
|
|
|
|
data.append(labels);
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2015-04-11 13:01:25 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
int VPoster::CountRows(int height) const
|
|
|
|
{
|
|
|
|
const qreal imgLength = height;
|
|
|
|
const qreal pageLength = PageRect().height();
|
|
|
|
|
|
|
|
// Example
|
|
|
|
// ― ―
|
|
|
|
// * *
|
|
|
|
// * *
|
|
|
|
// * *
|
|
|
|
// * * ―
|
|
|
|
// ― ― *
|
|
|
|
// * *
|
|
|
|
// * *
|
|
|
|
// * * ―
|
|
|
|
// * ― *
|
|
|
|
// — *
|
|
|
|
// * *
|
|
|
|
// * * ―
|
|
|
|
// * ― *
|
|
|
|
// * *
|
|
|
|
// — *
|
|
|
|
// * * ―
|
|
|
|
// * ― * <-(2)
|
|
|
|
// * + *
|
|
|
|
// * + *
|
|
|
|
// — + * ― <-(4)
|
|
|
|
// ^ ^ ― *
|
|
|
|
//(3) (1) *
|
|
|
|
// *
|
|
|
|
// *
|
|
|
|
// ―
|
|
|
|
|
|
|
|
const int pCount = qCeil(imgLength/pageLength);// Pages count without allowence (or allowence = 0) (3)
|
|
|
|
|
|
|
|
// Calculate how many pages will be after using allowence.
|
|
|
|
// We know start pages count. This number not enought because
|
|
|
|
// each n-1 pages add (n-1)*allowence length to page (1).
|
2015-10-28 15:22:36 +01:00
|
|
|
const qreal addionalLength = (pCount-1)*static_cast<int>(allowence); //-V636
|
2015-04-11 13:01:25 +02:00
|
|
|
|
|
|
|
// Calculate additional length form pages that will cover this length (2).
|
|
|
|
// In the end add page length (3).
|
|
|
|
// Bottom page have mandatory border (4)
|
|
|
|
return qCeil((addionalLength +
|
2015-10-19 15:21:06 +02:00
|
|
|
qCeil(addionalLength/pageLength)*static_cast<int>(allowence) + static_cast<int>(allowence) +
|
|
|
|
imgLength)/pageLength);
|
2015-04-11 13:01:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-06-01 20:08:36 +02:00
|
|
|
int VPoster::CountColumns(int width) const
|
2015-04-11 13:01:25 +02:00
|
|
|
{
|
|
|
|
const qreal imgLength = width;
|
|
|
|
const qreal pageLength = PageRect().width();
|
|
|
|
|
|
|
|
// Example
|
|
|
|
// |----|----|----|----| <- (3)
|
|
|
|
// |----|+++++++++++++++
|
|
|
|
// |----|+++++++++++
|
|
|
|
// |----|+++++++
|
|
|
|
// |----|+++ <- (1)
|
|
|
|
// |----|
|
|
|
|
// ^
|
|
|
|
// (2)
|
|
|
|
const int pCount = qCeil(imgLength/pageLength);// Pages count without allowence (or allowence = 0) (3)
|
|
|
|
|
|
|
|
// Calculate how many pages will be after using allowence.
|
|
|
|
// We know start pages count. This number not enought because
|
|
|
|
// each n-1 pages add (n-1)*allowence length to page (1).
|
2015-10-28 15:22:36 +01:00
|
|
|
const qreal addionalLength = (pCount-1)*static_cast<int>(allowence); //-V636
|
2015-04-11 13:01:25 +02:00
|
|
|
|
|
|
|
// Calculate additional length form pages that will cover this length (2).
|
|
|
|
// In the end add page length (3).
|
2015-10-19 15:21:06 +02:00
|
|
|
return qCeil((addionalLength + qCeil(addionalLength/pageLength)*static_cast<int>(allowence) +
|
|
|
|
imgLength)/pageLength);
|
2015-04-11 13:01:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-06-15 12:55:43 +02:00
|
|
|
PosterData VPoster::Cut(int i, int j, const QRect &imageRect) const
|
2015-04-11 13:01:25 +02:00
|
|
|
{
|
2016-07-06 20:49:36 +02:00
|
|
|
Q_UNUSED(imageRect);
|
|
|
|
|
2015-10-19 15:21:06 +02:00
|
|
|
const int x = j*PageRect().width() - j*static_cast<int>(allowence);
|
|
|
|
const int y = i*PageRect().height() - i*static_cast<int>(allowence);
|
2015-04-11 13:01:25 +02:00
|
|
|
|
2016-06-15 12:55:43 +02:00
|
|
|
SCASSERT(x <= imageRect.width());
|
|
|
|
SCASSERT(y <= imageRect.height());
|
2015-04-11 13:01:25 +02:00
|
|
|
|
2016-06-15 12:55:43 +02:00
|
|
|
PosterData data;
|
|
|
|
data.row = i;
|
|
|
|
data.column = j;
|
|
|
|
data.rect = QRect(x, y, PageRect().width(), PageRect().height());
|
2015-04-11 13:01:25 +02:00
|
|
|
|
2016-06-15 12:55:43 +02:00
|
|
|
return data;
|
2015-04-11 13:01:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QRect VPoster::PageRect() const
|
|
|
|
{
|
2015-04-15 11:10:35 +02:00
|
|
|
// Because the Point unit is defined to be 1/72th of an inch
|
2015-11-09 12:33:36 +01:00
|
|
|
// we can't use method pageRect(QPrinter::Point). Our dpi value can be different.
|
2015-04-15 11:10:35 +02:00
|
|
|
// We convert value yourself to pixels.
|
2015-04-11 13:01:25 +02:00
|
|
|
const QRectF rect = printer->pageRect(QPrinter::Millimeter);
|
2016-06-15 12:55:43 +02:00
|
|
|
const QRect pageRect(0, 0, qFloor(ToPixel(rect.width())), qFloor(ToPixel(rect.height())));
|
2015-04-11 13:01:25 +02:00
|
|
|
return pageRect;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-06-15 12:55:43 +02:00
|
|
|
qreal VPoster::ToPixel(qreal val)
|
2015-04-11 13:01:25 +02:00
|
|
|
{
|
2016-06-15 12:55:43 +02:00
|
|
|
return val / 25.4 * PrintDPI; // Mm to pixels with current dpi.
|
2015-04-11 13:01:25 +02:00
|
|
|
}
|