OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef PRINTING_BITMAP_TRANSFORM_SETTINGS_H_ | 5 #ifndef PRINTING_BITMAP_TRANSFORM_SETTINGS_H_ |
6 #define PRINTING_BITMAP_TRANSFORM_SETTINGS_H_ | 6 #define PRINTING_BITMAP_TRANSFORM_SETTINGS_H_ |
7 | 7 |
8 #include "base/tuple.h" | |
9 #include "ipc/ipc_param_traits.h" | |
10 #include "printing/printing_export.h" | |
11 #include "ui/gfx/rect.h" | |
12 | |
13 namespace printing { | 8 namespace printing { |
14 | 9 |
15 enum PwgRasterTransformType { | 10 enum PwgRasterTransformType { |
16 TRANSFORM_NORMAL, | 11 TRANSFORM_NORMAL, |
17 TRANSFORM_ROTATE_180, | 12 TRANSFORM_ROTATE_180, |
18 TRANSFORM_FLIP_HORIZONTAL, | 13 TRANSFORM_FLIP_HORIZONTAL, |
19 TRANSFORM_FLIP_VERTICAL, | 14 TRANSFORM_FLIP_VERTICAL, |
20 TRANSFORM_TYPE_LAST = TRANSFORM_FLIP_VERTICAL | 15 TRANSFORM_TYPE_LAST = TRANSFORM_FLIP_VERTICAL |
21 }; | 16 }; |
22 | 17 |
23 struct PwgRasterSettings { | 18 struct PwgRasterSettings { |
24 // How to transform odd-numbered pages. | 19 // How to transform odd-numbered pages. |
25 PwgRasterTransformType odd_page_transform; | 20 PwgRasterTransformType odd_page_transform; |
26 // Rotate all pages (on top of odd-numbered page transform). | 21 // Rotate all pages (on top of odd-numbered page transform). |
27 bool rotate_all_pages; | 22 bool rotate_all_pages; |
28 // Rasterize pages in reverse order. | 23 // Rasterize pages in reverse order. |
29 bool reverse_page_order; | 24 bool reverse_page_order; |
30 }; | 25 }; |
31 | 26 |
32 } // namespace printing | 27 } // namespace printing |
33 | 28 |
34 #endif // PRINTING_BITMAP_TRANSFORM_SETTINGS_H_ | 29 #endif // PRINTING_BITMAP_TRANSFORM_SETTINGS_H_ |
OLD | NEW |