blob: 33bc17687c93a613b7f8610992b951f84b215810 [file] [log] [blame]
// Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef PDF_UI_DOCUMENT_PROPERTIES_H_
#define PDF_UI_DOCUMENT_PROPERTIES_H_
#include <string>
#include "base/optional.h"
#include "pdf/document_metadata.h"
namespace gfx {
class Size;
} // namespace gfx
namespace chrome_pdf {
// Formats `size_points` of a page to a localized string suitable for display to
// the user. The returned string contains the dimensions and orientation of the
// page. The dimension units are set by the user's locale. Example return
// values:
// -> 210 x 297 mm (portrait)
// -> 11.00 x 8.50 in (landscape)
//
// Returns the string "Varies" if `size_points` is `base::nullopt`.
std::u16string FormatPageSize(const base::Optional<gfx::Size>& size_points);
// Formats `version` to a string suitable for display to a user. Version numbers
// do not require localization.
std::string FormatPdfVersion(PdfVersion version);
} // namespace chrome_pdf
#endif // PDF_UI_DOCUMENT_PROPERTIES_H_