OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_PRINT_SETTINGS_H_ | 5 #ifndef PRINTING_PRINT_SETTINGS_H_ |
6 #define PRINTING_PRINT_SETTINGS_H_ | 6 #define PRINTING_PRINT_SETTINGS_H_ |
7 | 7 |
8 #include "gfx/rect.h" | |
9 #include "printing/page_overlays.h" | 8 #include "printing/page_overlays.h" |
10 #include "printing/page_range.h" | 9 #include "printing/page_range.h" |
11 #include "printing/page_setup.h" | 10 #include "printing/page_setup.h" |
| 11 #include "ui/gfx/rect.h" |
12 | 12 |
13 namespace printing { | 13 namespace printing { |
14 | 14 |
15 // OS-independent print settings. | 15 // OS-independent print settings. |
16 class PrintSettings { | 16 class PrintSettings { |
17 public: | 17 public: |
18 PrintSettings(); | 18 PrintSettings(); |
19 ~PrintSettings(); | 19 ~PrintSettings(); |
20 | 20 |
21 // Reinitialize the settings to the default values. | 21 // Reinitialize the settings to the default values. |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 // Is the orientation landscape or portrait. | 113 // Is the orientation landscape or portrait. |
114 bool landscape_; | 114 bool landscape_; |
115 | 115 |
116 // True if this printer supports AlphaBlend. | 116 // True if this printer supports AlphaBlend. |
117 bool supports_alpha_blend_; | 117 bool supports_alpha_blend_; |
118 }; | 118 }; |
119 | 119 |
120 } // namespace printing | 120 } // namespace printing |
121 | 121 |
122 #endif // PRINTING_PRINT_SETTINGS_H_ | 122 #endif // PRINTING_PRINT_SETTINGS_H_ |
OLD | NEW |