PDF4QT/PdfForQtLib/sources/pdfglobal.h

148 lines
3.8 KiB
C
Raw Normal View History

2019-07-01 12:35:53 +02:00
// Copyright (C) 2018-2019 Jakub Melka
2018-11-17 16:48:30 +01:00
//
// This file is part of PdfForQt.
//
// PdfForQt is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// PdfForQt 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 Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with PDFForQt. If not, see <https://www.gnu.org/licenses/>.
#ifndef PDFGLOBAL_H
#define PDFGLOBAL_H
2018-12-14 19:41:12 +01:00
#include <QtCore>
2018-11-17 16:48:30 +01:00
#include <QtGlobal>
#include <limits>
#include <tuple>
#if defined(PDFFORQTLIB_LIBRARY)
# define PDFFORQTLIBSHARED_EXPORT Q_DECL_EXPORT
#else
# define PDFFORQTLIBSHARED_EXPORT Q_DECL_IMPORT
#endif
namespace pdf
{
using PDFInteger = int64_t;
using PDFReal = double;
// These constants define minimum/maximum integer and are defined in such a way,
// that even 100 times bigger integers are representable.
constexpr PDFInteger PDF_INTEGER_MIN = std::numeric_limits<int64_t>::min() / 100;
constexpr PDFInteger PDF_INTEGER_MAX = std::numeric_limits<int64_t>::max() / 100;
2019-08-31 14:37:18 +02:00
constexpr PDFReal PDF_EPSILON = 0.000001;
2018-11-17 16:48:30 +01:00
static constexpr bool isValidInteger(PDFInteger integer)
{
return integer >= PDF_INTEGER_MIN && integer <= PDF_INTEGER_MAX;
}
2019-08-31 14:37:18 +02:00
static inline bool isZero(PDFReal value)
{
return std::fabs(value) < PDF_EPSILON;
}
2018-11-17 16:48:30 +01:00
/// This structure represents a reference to the object - consisting of the
/// object number, and generation number.
struct PDFObjectReference
{
constexpr inline PDFObjectReference() :
objectNumber(0),
generation(0)
{
}
constexpr inline PDFObjectReference(PDFInteger objectNumber, PDFInteger generation) :
objectNumber(objectNumber),
generation(generation)
{
}
PDFInteger objectNumber;
PDFInteger generation;
constexpr bool operator==(const PDFObjectReference& other) const
{
return objectNumber == other.objectNumber && generation == other.generation;
}
constexpr bool operator!=(const PDFObjectReference& other) const { return !(*this == other); }
constexpr bool operator<(const PDFObjectReference& other) const
{
return std::tie(objectNumber, generation) < std::tie(other.objectNumber, other.generation);
}
};
/// Represents version identification
struct PDFVersion
{
constexpr explicit PDFVersion() = default;
constexpr explicit PDFVersion(uint16_t major, uint16_t minor) :
major(major),
minor(minor)
{
}
uint16_t major = 0;
uint16_t minor = 0;
bool isValid() const { return major > 0; }
};
2018-12-14 19:41:12 +01:00
struct PDFTranslationContext
{
Q_DECLARE_TR_FUNCTIONS(pdf::PDFTranslationContext)
};
2019-01-20 17:55:06 +01:00
constexpr PDFReal PDF_POINT_TO_INCH = 1.0 / 72.0;
2019-01-27 17:55:22 +01:00
constexpr PDFReal PDF_INCH_TO_MM = 25.4; // [mm / inch]
constexpr PDFReal PDF_POINT_TO_MM = PDF_POINT_TO_INCH * PDF_INCH_TO_MM;
/// This is default "DPI", but in milimeters, so the name is DPMM (device pixel per milimeter)
constexpr PDFReal PDF_DEFAULT_DPMM = 96.0 / PDF_INCH_TO_MM;
2019-01-20 17:55:06 +01:00
constexpr PDFReal convertPDFPointToMM(PDFReal point)
{
return point * PDF_POINT_TO_MM;
}
2019-01-27 17:55:22 +01:00
class PDFBoolGuard final
{
public:
inline explicit PDFBoolGuard(bool& value) :
m_value(value),
m_oldValue(value)
{
m_value = true;
}
inline ~PDFBoolGuard()
{
m_value = m_oldValue;
}
private:
bool& m_value;
bool m_oldValue;
};
2018-11-17 16:48:30 +01:00
} // namespace pdf
#endif // PDFGLOBAL_H