Upload upstream chromium 73.0.3683.0
[platform/framework/web/chromium-efl.git] / printing / units.h
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef PRINTING_UNITS_H_
6 #define PRINTING_UNITS_H_
7
8 #include "printing/printing_export.h"
9
10 namespace printing {
11
12 // Length of an inch in 0.001mm unit.
13 constexpr int kMicronsPerInch = 25400;
14
15 // Mil is a thousandth of an inch.
16 constexpr float kMicronsPerMil = 25.4f;
17 constexpr int kMilsPerInch = 1000;
18
19 // Length of an inch in CSS's 1pt unit.
20 // http://dev.w3.org/csswg/css3-values/#absolute-length-units-cm-mm.-in-pt-pc
21 const int kPointsPerInch = 72;
22
23 // Length of an inch in CSS's 1px unit.
24 // http://dev.w3.org/csswg/css3-values/#the-px-unit
25 const int kPixelsPerInch = 96;
26
27 // Dpi used to save to PDF or Cloud Print.
28 const int kDefaultPdfDpi = 300;
29
30 // LETTER: 8.5 x 11 inches
31 const float kLetterWidthInch = 8.5f;
32 const float kLetterHeightInch = 11.0f;
33
34 // LEGAL: 8.5 x 14 inches
35 const float kLegalWidthInch = 8.5f;
36 const float kLegalHeightInch = 14.0f;
37
38 // A4: 8.27 x 11.69 inches
39 const float kA4WidthInch = 8.27f;
40 const float kA4HeightInch = 11.69f;
41
42 // A3: 11.69 x 16.54 inches
43 const float kA3WidthInch = 11.69f;
44 const float kA3HeightInch = 16.54f;
45
46 // Converts from one unit system to another using integer arithmetics.
47 PRINTING_EXPORT int ConvertUnit(double value, int old_unit, int new_unit);
48
49 // Converts from one unit system to another using doubles.
50 PRINTING_EXPORT double ConvertUnitDouble(double value, double old_unit,
51                                          double new_unit);
52
53 // Converts from 1 pixel to 1 point using integers.
54 PRINTING_EXPORT int ConvertPixelsToPoint(int pixels);
55
56 // Converts from 1 pixel to 1 point using doubles.
57 PRINTING_EXPORT double ConvertPixelsToPointDouble(double pixels);
58
59 // Converts from 1 point to 1 pixel using doubles.
60 PRINTING_EXPORT double ConvertPointsToPixelDouble(double points);
61
62 }  // namespace printing
63
64 #endif  // PRINTING_UNITS_H_