okular/generators/dvi/simplePageSize.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
1.4 KiB
C++
Raw Permalink Normal View History

// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; c-brace-offset: 0; -*-
// SimplePageSize.cpp
//
// Part of KVIEWSHELL - A framework for multipage text/gfx viewers
//
2021-05-24 07:25:56 +00:00
// SPDX-FileCopyrightText: 2002-2005 Stefan Kebekus
2021-05-24 12:00:50 +00:00
// SPDX-License-Identifier: GPL-2.0-or-later
#include <config.h>
2014-09-11 19:12:27 +00:00
#include "debug_dvi.h"
#include "simplePageSize.h"
2018-08-31 09:23:45 +00:00
#include <QLoggingCategory>
#include <QPaintDevice>
double SimplePageSize::zoomForHeight(quint32 height, const QPaintDevice &pd) const
{
if (!isValid()) {
qCCritical(OkularDviShellDebug) << "SimplePageSize::zoomForHeight() called when paper height was invalid";
return 0.1;
}
return double(height) / (pd.logicalDpiY() * pageHeight.getLength_in_inch());
}
double SimplePageSize::zoomForWidth(quint32 width, const QPaintDevice &pd) const
{
if (!isValid()) {
qCCritical(OkularDviShellDebug) << "SimplePageSize::zoomForWidth() called when paper width was invalid";
return 0.1;
}
return double(width) / (pd.logicalDpiX() * pageWidth.getLength_in_inch());
}
double SimplePageSize::zoomToFitInto(const SimplePageSize &target) const
{
if (!isValid() || isSmall() || !target.isValid()) {
2014-09-11 19:12:27 +00:00
qCWarning(OkularDviShellDebug) << "SimplePageSize::zoomToFitInto(...) with unsuitable source of target";
return 1.0;
}
double z1 = target.width() / pageWidth;
double z2 = target.height() / pageHeight;
return qMin(z1, z2);
}