valentina/src/test/ValentinaTest/tst_vposter.cpp

99 lines
3.7 KiB
C++
Raw Normal View History

2015-04-15 14:11:13 +02:00
/************************************************************************
**
** @file tst_vposter.cpp
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date 15 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 "tst_vposter.h"
#include "../vlayout/vposter.h"
#include "../vmisc/def.h"
2015-04-15 14:11:13 +02:00
#include <QImage>
#include <QPrinter>
#include <QtTest>
//---------------------------------------------------------------------------------------------------------------------
TST_VPoster::TST_VPoster(QObject *parent) :
QObject(parent)
{
}
//---------------------------------------------------------------------------------------------------------------------
2015-04-15 14:44:57 +02:00
// cppcheck-suppress unusedFunction
2015-04-15 14:11:13 +02:00
void TST_VPoster::BigPoster()
{
QPrinter printer;
printer.setResolution(96);// By default
printer.setPaperSize(QPrinter::A4);
printer.setFullPage(true);
// We need to set full page because otherwise QPrinter->pageRect returns different values in Windows and Linux
2015-04-15 14:11:13 +02:00
const QRect image(0, 0, 2622, 3178); // Little bit bigger than A1
2015-04-15 14:11:13 +02:00
VPoster posterazor(&printer);
const QVector<PosterData> poster = posterazor.Calc(image, 0);
2015-04-15 14:11:13 +02:00
QCOMPARE(poster.size(), 12);
2015-04-15 14:11:13 +02:00
for (int i=0; i < poster.size(); i++)
{
QCOMPARE(poster.at(i).rect.size(), PageRect(printer).size());
2015-04-15 14:11:13 +02:00
}
}
//---------------------------------------------------------------------------------------------------------------------
2015-04-15 14:44:57 +02:00
// cppcheck-suppress unusedFunction
2015-04-15 14:11:13 +02:00
void TST_VPoster::SmallPoster()
{
QPrinter printer;
printer.setResolution(96);// By default
printer.setPaperSize(QPrinter::A4);
const QRect image(0, 0, 700, 1000); // Little bit less than A4
2015-04-15 14:11:13 +02:00
VPoster posterazor(&printer);
const QVector<PosterData> poster = posterazor.Calc(image, 0);
2015-04-15 14:11:13 +02:00
QCOMPARE(poster.size(), 1);
QCOMPARE(poster.at(0).rect.size(), PageRect(printer).size());
2015-04-15 14:11:13 +02:00
}
//---------------------------------------------------------------------------------------------------------------------
QRect TST_VPoster::PageRect(const QPrinter &printer) const
{
// Because the Point unit is defined to be 1/72th of an inch
// we can't use method pageRect(QPrinter::Point). Our dpi different can be different.
// We convert value yourself to pixels.
const QRectF rect = printer.pageRect(QPrinter::Millimeter);
QRect pageRect(qFloor(ToPixel(rect.x())), qFloor(ToPixel(rect.y())),
qFloor(ToPixel(rect.width())), qFloor(ToPixel(rect.height())));
2015-04-15 14:11:13 +02:00
return pageRect;
}
//---------------------------------------------------------------------------------------------------------------------
qreal TST_VPoster::ToPixel(qreal val) const
2015-04-15 14:11:13 +02:00
{
return val / 25.4 * PrintDPI; // Mm to pixels with current dpi.
2015-04-15 14:11:13 +02:00
}