valentina/src/test/ValentinaTest/tst_vposter.cpp

102 lines
3.9 KiB
C++

/************************************************************************
**
** @file tst_vposter.cpp
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date 15 4, 2015
**
** @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) 2015 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 "tst_vposter.h"
#include "../vlayout/vposter.h"
#include "../vmisc/def.h"
#include <QImage>
#include <QPrinter>
#include <QtTest>
//---------------------------------------------------------------------------------------------------------------------
TST_VPoster::TST_VPoster(QObject *parent)
: QObject(parent)
{
}
//---------------------------------------------------------------------------------------------------------------------
// cppcheck-suppress unusedFunction
void TST_VPoster::BigPoster()
{
QPrinter printer;
printer.setResolution(static_cast<int>(PrintDPI)); // By default
printer.setPageSize(QPageSize(QPageSize::A4));
printer.setFullPage(true);
// We need to set full page because otherwise QPrinter->pageRect returns different values in Windows and Linux
// sets the margins to 0 to perform the test.
printer.setPageMargins(QMarginsF(), QPageLayout::Millimeter);
const QSize image(2622, 3178); // Little bit bigger than A1
VPoster const posterazor(&printer);
const QVector<PosterData> poster = posterazor.Calc(image, 0, PageOrientation::Portrait);
QCOMPARE(poster.size(), 12);
for (const auto &p : poster)
{
QCOMPARE(p.rect.size(), PageRect(printer).size());
}
}
//---------------------------------------------------------------------------------------------------------------------
// cppcheck-suppress unusedFunction
void TST_VPoster::SmallPoster()
{
QPrinter printer;
printer.setResolution(96); // By default
printer.setPageSize(QPageSize(QPageSize::A4));
const QSize image(700, 1000); // Little bit less than A4
VPoster const posterazor(&printer);
const QVector<PosterData> poster = posterazor.Calc(image, 0, PageOrientation::Portrait);
QCOMPARE(poster.size(), 1);
QCOMPARE(poster.at(0).rect.size(), PageRect(printer).size());
}
//---------------------------------------------------------------------------------------------------------------------
auto TST_VPoster::PageRect(const QPrinter &printer) const -> QRect
{
// 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())));
return pageRect;
}
//---------------------------------------------------------------------------------------------------------------------
auto TST_VPoster::ToPixel(qreal val) const -> qreal
{
return val / 25.4 * PrintDPI; // Mm to pixels with current dpi.
}