[email protected] | da00dc1 | 2011-10-06 21:39:26 | [diff] [blame] | 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_PDF_RENDER_SETTINGS_H_ | ||||
6 | #define PRINTING_PDF_RENDER_SETTINGS_H_ | ||||
7 | |||||
8 | #include "base/tuple.h" | ||||
9 | #include "ipc/ipc_param_traits.h" | ||||
10 | #include "printing/printing_export.h" | ||||
tfarina | 3b0452d | 2014-12-31 15:20:09 | [diff] [blame^] | 11 | #include "ui/gfx/geometry/rect.h" |
[email protected] | da00dc1 | 2011-10-06 21:39:26 | [diff] [blame] | 12 | |
13 | namespace printing { | ||||
14 | |||||
15 | // Defining PDF rendering settings here as a Tuple as following: | ||||
16 | // gfx::Rect - render area | ||||
17 | // int - render dpi | ||||
18 | // bool - autorotate pages to fit paper | ||||
Avi Drissman | 95c2a1b7 | 2014-12-22 18:01:32 | [diff] [blame] | 19 | typedef Tuple<gfx::Rect, int, bool> PdfRenderSettingsBase; |
[email protected] | da00dc1 | 2011-10-06 21:39:26 | [diff] [blame] | 20 | |
[email protected] | 76f5958 | 2013-11-20 09:07:22 | [diff] [blame] | 21 | class PdfRenderSettings : public PdfRenderSettingsBase { |
[email protected] | da00dc1 | 2011-10-06 21:39:26 | [diff] [blame] | 22 | public: |
23 | PdfRenderSettings() : PdfRenderSettingsBase() {} | ||||
24 | PdfRenderSettings(gfx::Rect area, int dpi, bool autorotate) | ||||
25 | : PdfRenderSettingsBase(area, dpi, autorotate) {} | ||||
26 | ~PdfRenderSettings() {} | ||||
27 | |||||
Avi Drissman | 95c2a1b7 | 2014-12-22 18:01:32 | [diff] [blame] | 28 | const gfx::Rect& area() const { return ::get<0>(*this); } |
29 | int dpi() const { return ::get<1>(*this); } | ||||
30 | bool autorotate() const { return ::get<2>(*this); } | ||||
[email protected] | da00dc1 | 2011-10-06 21:39:26 | [diff] [blame] | 31 | }; |
32 | |||||
33 | } // namespace printing | ||||
34 | |||||
35 | namespace IPC { | ||||
36 | template <> | ||||
37 | struct SimilarTypeTraits<printing::PdfRenderSettings> { | ||||
[email protected] | e32b7f5f | 2011-10-06 21:48:42 | [diff] [blame] | 38 | typedef printing::PdfRenderSettingsBase Type; |
[email protected] | da00dc1 | 2011-10-06 21:39:26 | [diff] [blame] | 39 | }; |
40 | |||||
41 | } // namespace IPC | ||||
42 | |||||
43 | #endif // PRINTING_PDF_RENDER_SETTINGS_H_ | ||||
44 |