From cca66b9ec4e494c1d919bff0f71a820d8afab1fa Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 20:24:48 +0200 Subject: Adding upstream version 1.2.2. Signed-off-by: Daniel Baumann --- src/util/paper.h | 65 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 src/util/paper.h (limited to 'src/util/paper.h') diff --git a/src/util/paper.h b/src/util/paper.h new file mode 100644 index 0000000..225e806 --- /dev/null +++ b/src/util/paper.h @@ -0,0 +1,65 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/* + * Inkscape Paper Sizes + * + * Authors: + * + * Copyright (C) 2013 AUTHORS + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ + +#include +#include +#include <2geom/point.h> + +#include "units.h" + +#ifndef INKSCAPE_UTIL_PAPER_H +#define INKSCAPE_UTIL_PAPER_H + +namespace Inkscape { + +/** + * Data class used to store common paper dimensions from pages.csv + */ +class PaperSize +{ +public: + PaperSize(); + PaperSize(std::string name, double width, double height, Inkscape::Util::Unit const *unit); + PaperSize(const PaperSize &other) { assign(other); } + PaperSize &operator=(const PaperSize &other) { assign(other); return *this; } + + ~PaperSize() = default; + + std::string name; + Geom::Point size; + double width; + double height; + Inkscape::Util::Unit const *unit; /// pointer to object in UnitTable, do not delete + + std::string getDescription(bool landscape) const; + + static const std::vector& getPageSizes(); + static const PaperSize *findPaperSize(double width, double height, Inkscape::Util::Unit const *unit); + + static std::string toDescription(std::string name, double x, double y, Inkscape::Util::Unit const *unit); +private: + void assign(const PaperSize &other); + static std::string formatNumber(double val); +}; + +} // namespace Inkscape + +#endif // define INKSCAPE_UTIL_UNITS_H +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 : -- cgit v1.2.3